From 46a06687cf260bc6cd5e4b0797c27b293bad3abd Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Fri, 25 Feb 2022 14:30:56 +0100 Subject: [PATCH] Debug notarization --- macosx_notarize.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/macosx_notarize.sh b/macosx_notarize.sh index 149a29a..418826f 100755 --- a/macosx_notarize.sh +++ b/macosx_notarize.sh @@ -25,16 +25,15 @@ ZIP_PATH=$1.zip cd $APP_DIR echo "Creating zip" -zip -r $APP_NAME.zip $APP_NAME +zip -r "$APP_NAME.zip" "$APP_NAME" echo "Uploading $ZIP_PATH for notarization" -requestUUID=$(xcrun altool --notarize-app \ +xcrun altool --notarize-app \ --primary-bundle-id "$4" \ --username "$5" \ --password "$6" \ --asc-provider "$3" \ - --file "$1.zip" 2>&1 \ - | awk '/RequestUUID/ { print $NF; }') + --file "$1.zip" echo "Notarization RequestUUID: $requestUUID"