Compare commits

...

2 Commits

Author SHA1 Message Date
Megan Marsh 30aa6a0cb4 Cut version 1.5.4 2020-02-14 15:27:21 -08:00
Megan Marsh a689fc79ef Cut version x.y.z 2020-02-14 15:02:17 -08:00
3 changed files with 7 additions and 2 deletions
+1 -2
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
+3
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..."
+3
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