From bddd4a9fd6df94ad6b52fd2a7fb75572663d6c0b Mon Sep 17 00:00:00 2001 From: David Parsons Date: Mon, 6 Feb 2023 17:26:07 +0000 Subject: [PATCH] 4.2.5: Print 256 and 512 shasum when building distribution files --- zipit.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zipit.sh b/zipit.sh index 407e332..9c6eac3 100755 --- a/zipit.sh +++ b/zipit.sh @@ -12,3 +12,8 @@ rm -vrf ./dist/unlocker$VERSION 7z a ./dist/unlocker$VERSION.zip ./build/* tar czvf ./dist/unlocker$VERSION.tgz ./build/* 7z x -o./dist/unlocker$VERSION ./dist/unlocker$VERSION.zip + +shasum -a 256 ./dist/unlocker$VERSION.tgz +shasum -a 256 ./dist/unlocker$VERSION.zip +shasum -a 512 ./dist/unlocker$VERSION.tgz +shasum -a 512 ./dist/unlocker$VERSION.zip