Cut version 1.5.4

This commit is contained in:
Megan Marsh 2020-02-14 15:27:21 -08:00
parent c9b011145d
commit 9a85fdd0a5
3 changed files with 7 additions and 2 deletions

View File

@ -157,8 +157,7 @@ signed_checksum=$(
)
echo "${signed_checksum} signed_${SN_ID}.zip" | $SHASUM_PROG -c
if [ $? -ne 0 ]
then
if [ $? -ne 0 ]; then
exit 1
fi

View File

@ -40,6 +40,9 @@ for PLATFORM in $(find ./pkg -mindepth 1 -maxdepth 1 -type d); do
done
./scripts/sign.sh
if [ $? -ne 0 ]; then
exit 1
fi
if [ -z $NOSIGN ]; then
echo "==> Signing..."

View File

@ -33,6 +33,9 @@ for DARWIN_BIN in $(find ./pkg/dist/*darwin_*.zip); do
echo $TARGET_ZIP
./scripts/codesign_example.sh
if [ $? -ne 0 ]; then
exit 1
fi
done
exit 0