SITKA Public Git
/
sitka
/
sitka-tools.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
integrity-checker.pl: strip newline from hash-file input
[sitka/sitka-tools.git]
/
deployment
/
integrity-checker.pl
diff --git
a/deployment/integrity-checker.pl
b/deployment/integrity-checker.pl
index
c5f7395
..
b35ace2
100755
(executable)
--- a/
deployment/integrity-checker.pl
+++ b/
deployment/integrity-checker.pl
@@
-95,6
+95,7
@@
my %git_hashes;
if ($hash_file) {
open (HASHFILE, '<', $hash_file) or die "Could not open $hash_file: $!\n";
while (<HASHFILE>) {
+ chomp;
my ($hash, $file) = split(/\s+/, $_, 2);
$git_hashes{$file} = $hash;
}