summary refs log tree commit diff
path: root/.ci/macos/notarize.sh
diff options
context:
space:
mode:
Diffstat (limited to '.ci/macos/notarize.sh')
-rwxr-xr-x.ci/macos/notarize.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/macos/notarize.sh b/.ci/macos/notarize.sh
index 0090da9b..af62a6d2 100755
--- a/.ci/macos/notarize.sh
+++ b/.ci/macos/notarize.sh
@@ -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