Re: git-send-email: Skipping - not found.
From: Jeff King <hidden>
Date: 2016-06-15 22:44:33
On Mon, Apr 28, 2008 at 04:15:24PM -0500, Timur Tabi wrote:
When I issue this command: git-send-email --from Timur Tabi [off-list ref] --suppress-cc=all --to timur@tabi.org --smtp-server remotesmtp.freescale.net 0001--PATCH-Update-CS4270-driver-to-ASoC-V2.patch
Surely that is not the command you issued, since it lacks shell quoting around your name and email address.
I don't know enough about Perl to debug this, but I presume the problem is in
this code:
[...]
for my $f (@ARGV) {
[...]
print STDERR "Skipping $f - not found.\n";Yes, that is what is producing the error message. But that is the first time we ever look at @ARGV, let alone modify it. So the error is almost certainly caused by a blank argument being passed on the command line. And we can't debug that unless you show us the exact shell invocation that was used. -Peff