Revert "fix sha1 file name" (#3784).

This reverts commit d3f8110a1c.
This commit is contained in:
Christian P. MOMON 2019-06-30 14:32:41 +02:00
parent d3f8110a1c
commit d9c67b32d0
1 changed files with 2 additions and 2 deletions

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 {