From bc4c3dc94218d82c6f60ec3ceaadbbf0ec0f7dbf Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Tue, 1 Nov 2022 06:31:34 +0100 Subject: [PATCH] Remove notarization output from bundle --- macosx_notarize.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/macosx_notarize.sh b/macosx_notarize.sh index 301ba71..7750740 100755 --- a/macosx_notarize.sh +++ b/macosx_notarize.sh @@ -34,8 +34,9 @@ xcrun notarytool submit "$1.zip" \ --key-id $5 \ --issuer $7 \ --wait 2>&1 | tee notary_output.txt -rm -r "$APP_NAME.zip" +rm "$APP_NAME.zip" requestUUID=$(cat notary_output.txt | awk '/id:/ { print $NF; exit; }') +rm notary_output.txt echo "Notarization log:" xcrun notarytool log $requestUUID \