Skip to content
Snippets Groups Projects
Verified Commit 9010acd9 authored by Joe Donofry's avatar Joe Donofry Committed by Nicolas Werner
Browse files

If and Else blocks were backwards

parent e6bbe74a
No related branches found
No related tags found
No related merge requests found
Pipeline #3704 failed
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment