Print SHA256 of the zip archive, not the binary

This commit is contained in:
Dan Sosedoff 2015-05-31 20:42:55 -05:00
parent 79bf430dee
commit 4b5a2b96a8

View File

@ -9,6 +9,6 @@ for file in $(ls $DIR)
do
fin=$DIR/$file
fout=$DIR/$file.zip
shasum -a 256 $fin
zip -9 -q -j $fout $fin
shasum -a 256 $fout
done