If and Else blocks were backwards

This commit is contained in:
Joseph Donofry 2022-09-25 19:16:23 -04:00
parent d7fffa9f46
commit d103f793bf
No known key found for this signature in database
GPG Key ID: E8A1D78EF044B0CB
1 changed files with 2 additions and 2 deletions

View File

@ -56,10 +56,10 @@ xcrun notarytool submit nheko.dmg --apple-id "${APPLE_DEV_USER}" --password "${A
requestUUID="$(awk -F ': ' '/id/ {print $2}' "$NOTARIZE_SUBMIT_LOG" | head -1)"
if [ -z "${requestUUID}" ]; then
echo "Received requestUUID: \"${requestUUID}\""
else
echo "Something went wrong when submitting the request... we don't have a UUID"
exit 1
else
echo "Received requestUUID: \"${requestUUID}\""
fi
while sleep 60 && date; do