From d9c67b32d03f2f5b0a1e37e0a9d600c817af9231 Mon Sep 17 00:00:00 2001 From: "Christian P. MOMON" Date: Sun, 30 Jun 2019 14:32:41 +0200 Subject: [PATCH] Revert "fix sha1 file name" (#3784). This reverts commit d3f8110a1c0f5767f0f8a1d3440fb9a9e1187c8c. --- podcasts/scripts/make-all-podcasts.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/podcasts/scripts/make-all-podcasts.pl b/podcasts/scripts/make-all-podcasts.pl index 7057dc7..c514267 100755 --- a/podcasts/scripts/make-all-podcasts.pl +++ b/podcasts/scripts/make-all-podcasts.pl @@ -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 {