Skip to content

Commit 1128195

Browse files
committed
Fixing bash syntax on mac build script
1 parent fa757ea commit 1128195

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
@@ -88,7 +88,7 @@ while [ "$(( $(date +%s) - 3600 ))" -lt "$START" ]; do
8888
[[ "$notarize_info" =~ $pat ]]
8989
notarize_status="${BASH_REMATCH[1]}"
9090

91-
if [ "$notarize_status" != "in progress" && "$notarize_status" != "" ]; then
91+
if [ "$notarize_status" != "in progress" ] && [ "$notarize_status" != "" ]; then
9292
echo "Notarization Status Found: $notarize_status"
9393
break
9494
fi

0 commit comments

Comments
 (0)