fix sha1 file name

This commit is contained in:
Quentin Gibeaux 2019-06-28 10:01:04 +02:00 committed by Quentin Gibeaux
parent a330d7c146
commit d3f8110a1c

View File

@ -183,7 +183,7 @@ sub process {
}
# hashing
my $command = "sha1sum $target_name > $target_name.sha1";
my $command = "sha1sum $target_name > $target_name-sha1";
if($dryrun) {
print "$command\n";
} else {
@ -237,7 +237,7 @@ sub process {
}
# hashing
my $command = "sha1sum $source_name.$format > $source_name.$format.sha1";
my $command = "sha1sum $source_name.$format > $source_name.$format-sha1";
if($dryrun) {
print "$command\n";
} else {