1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-07-03 15:15:27 +02:00
jami-client-qt/scripts/notarize.sh
Kateryna Kostiuk 4a60f0fc9e macOS: use notarytool for notarization
Change-Id: I34fba8587725834ffd4b5c35cf2bab50c8faa3f4
2022-07-29 14:41:49 -04:00

16 lines
429 B
Bash
Executable file

#!/bin/bash
echo ""
cd build-local
xcrun notarytool submit Jami.app.zip --apple-id ${APPLE_ACCOUNT} --password ${APPLE_PASSWORD} --output-format plist --team-id ${TEAM_ID} --wait > UploadInfo.plist
STATUS=$(xmllint --xpath "/plist/dict/key[.='status']/following-sibling::string[1]/node()" UploadInfo.plist)
if [ "$STATUS" == "Accepted" ];
then
echo "notarization success"
break
else
echo "notarization failed"
break
exit 1
fi