Skip to content

Commit 482287b

Browse files
committed
Fix notarization changes.
1 parent b6cc8cf commit 482287b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/make-ippeveselfcert.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,14 @@ if test x$platform = xmacos; then
106106
fi
107107

108108
echo "Notarizing ZIP file $pkgfile..."
109-
xcrun altool --notarize-app -f $pkgfile --primary-bundle-id org.pwg.$pkgname --username $APPLEID --password '@keychain:AC_$TEAMID' --asc-provider $TEAMID | tee .notarize
109+
xcrun altool --notarize-app -f $pkgfile --primary-bundle-id org.pwg.$pkgname --username $APPLEID --password @keychain:AC_$TEAMID --asc-provider $TEAMID | tee .notarize
110110
uuid=`grep RequestUUID .notarize | awk '{print $3}'`
111111

112112
echo Waiting for notarization to complete...
113113
approved="in progress"
114114
while test "$status" = "in progress"; do
115115
sleep 10
116-
xcrun altool --notarization-info $uuid --username $APPLEID --password "@keychain:AC_$TEAMID" --asc-provider $TEAMID | tee .notarize
116+
xcrun altool --notarization-info $uuid --username $APPLEID --password @keychain:AC_$TEAMID --asc-provider $TEAMID | tee .notarize
117117
status="`grep Status: .notarize | cut -b14-`"
118118
done
119119

0 commit comments

Comments
 (0)