Merge branch 'kb/send-email-fifo'

* kb/send-email-fifo:
  git-send-email: Accept fifos as well as files
This commit is contained in:
Junio C Hamano 2008-07-01 16:22:29 -07:00
commit f7c3cf8106

View file

@ -408,7 +408,7 @@ sub read_config {
push @files, grep { -f $_ } map { +$f . "/" . $_ }
sort readdir(DH);
} elsif (-f $f) {
} elsif (-f $f or -p $f) {
push @files, $f;
} else {
@ -418,8 +418,10 @@ sub read_config {
if (!$no_validate) {
foreach my $f (@files) {
my $error = validate_patch($f);
$error and die "fatal: $f: $error\nwarning: no patches were sent\n";
unless (-p $f) {
my $error = validate_patch($f);
$error and die "fatal: $f: $error\nwarning: no patches were sent\n";
}
}
}