Skip to content

Commit e628b16

Browse files
committed
Fix notarization status regex
1 parent 28f790f commit e628b16

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
@@ -91,7 +91,7 @@ while [ $(( $(date +%s) - 3600 )) -lt $START ]; do
9191
notarize_info=$(xcrun altool --notarization-info "$REQUEST_UUID" -u "[email protected]" -p "@keychain:NOTARIZE_AUTH")
9292
echo "$notarize_info"
9393

94-
pat='Status:\s(.*)'
94+
pat='Status: (.*)'
9595
[[ "$notarize_info" =~ $pat ]]
9696
notarize_status="${BASH_REMATCH[1]}"
9797

0 commit comments

Comments
 (0)