Fixed incorrect argument on open for three-arg.
This commit is contained in:
parent
fc62d8a6bf
commit
a87ea6f4a8
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ my($GIT_CMD) = @ARGV;
|
||||||
|
|
||||||
$GIT_CMD .= " --date=rfc" unless $GIT_CMD =~ /--date/;
|
$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 $currentCommit = "";
|
||||||
my $skipThisOne = 1;
|
my $skipThisOne = 1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue