Skip to content

Commit 7df790c

Browse files
committed
Fix bash syntax for mac (a bit tricky)
1 parent 43a666c commit 7df790c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

installer/build-mac-dmg.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ xcrun altool --notarization-history 0 -u "[email protected]" -p "@keychain:N
8686
echo "Check Notarization Info (loop until status detected)"
8787
# Wait up to 60 minutes for notarization status to change
8888
START=$(date +%s)
89-
while [ "$(( "$(date +%s) - 3600" ))" -lt "$START" ]; do
89+
while [ $(( "$(date +%s) - 3600" )) -lt "$START" ]; do
9090
notarize_info=$(xcrun altool --notarization-info "$REQUEST_UUID" -u "[email protected]" -p "@keychain:NOTARIZE_AUTH")
9191
echo "$notarize_info"
9292

0 commit comments

Comments
 (0)