From c1fa520f98e9d3f30e57bbc0012a8d04fd432586 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 16 Mar 2019 16:46:50 +0000 Subject: [PATCH] release.pl: allow for installer-only sha*sums. Now there are lines in the checksum lists that don't correspond directly to files we uploaded as part of the main release process, release.pl needs to ignore them to avoid embarrassing upload failures. --- release.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.pl b/release.pl index b5ad149c..eb4f7f24 100755 --- a/release.pl +++ b/release.pl @@ -100,7 +100,7 @@ if ($upload) { } } elsif (m!^putty/(.*sum)s!) { print $pipe "echo checking ${1}s\n"; - print $pipe "$1 -c ${1}s\n"; + print $pipe "grep -vF ' (installer version)' ${1}s | grep . | $1 -c\n"; } }, no_chdir => 1}, "putty"); print $pipe "echo all verified ok\n";