diff options
author | Joseph Donofry <rubberduckie3554@gmail.com> | 2022-09-25 19:16:23 -0400 |
---|---|---|
committer | Joseph Donofry <rubberduckie3554@gmail.com> | 2022-09-25 19:16:23 -0400 |
commit | d103f793bfcf228f89a4b8e86725f0f25190d7e7 (patch) | |
tree | ea8713885e2f71f4ab9ab740d73d3090053ee027 /.ci | |
parent | Make sure there are no spaces in the status string (diff) | |
download | nheko-d103f793bfcf228f89a4b8e86725f0f25190d7e7.tar.xz |
If and Else blocks were backwards
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/macos/notarize.sh | 4 |
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 |