Skip to content

Commit

Permalink
Cut version 1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
SwampDragons committed Feb 14, 2020
1 parent a689fc7 commit 30aa6a0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/codesign_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions scripts/dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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..."
Expand Down
3 changes: 3 additions & 0 deletions scripts/sign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 30aa6a0

Please sign in to comment.