closing STDIN did something weird, don't do it.
This commit is contained in:
parent
0f7eae3318
commit
50d747db0f
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ while (my $line = <STDIN>) {
|
||||||
die "badly formatted commit ID: $line" unless $line =~ /^[a-z0-9]{40,40}$/;
|
die "badly formatted commit ID: $line" unless $line =~ /^[a-z0-9]{40,40}$/;
|
||||||
$WHITELIST_COMMIT_IDS{$line} = $line;
|
$WHITELIST_COMMIT_IDS{$line} = $line;
|
||||||
}
|
}
|
||||||
close STDIN;
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
# ProcessCommit is the primary function that processes a commit to generate
|
# ProcessCommit is the primary function that processes a commit to generate
|
||||||
# the blame data. If $fileListRef is defined, it should be a list reference,
|
# the blame data. If $fileListRef is defined, it should be a list reference,
|
||||||
|
|
Loading…
Reference in a new issue