Fixed incorrect argument on open for three-arg.

This commit is contained in:
Bradley M. Kuhn 2010-06-26 13:29:12 -04:00
parent fc62d8a6bf
commit a87ea6f4a8

View file

@ -32,7 +32,7 @@ my($GIT_CMD) = @ARGV;
$GIT_CMD .= " --date=rfc" unless $GIT_CMD =~ /--date/;
open(GIT_OUTPUT, "-|", $GIT_CMD) or die "unable to run \"$GIT_CMD\": $!";
open(GIT_OUTPUT, "|-", $GIT_CMD) or die "unable to run \"$GIT_CMD\": $!";
my $currentCommit = "";
my $skipThisOne = 1;