We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c13862 commit 3d2efd4Copy full SHA for 3d2efd4
cert
@@ -33,8 +33,12 @@ import_certs ()
33
curl 'https://developer.apple.com/certificationauthority/AppleWWDRCA.cer' > "$certpath"
34
security import "$certpath" -k "$KEYCHAIN" -T /usr/bin/codesign
35
36
- # Import our development certificate.
37
- security import "$SCRIPT_DIR/certificates/development.p12" -k "$KEYCHAIN" -P "$KEY_PASSWORD" -T /usr/bin/codesign
+ # Import certificates.
+ for c in $SCRIPT_DIR/certificates/*.p12;
38
+ do
39
+ [ "$c" = "$SCRIPT_DIR/certificates/*.p12" ] && break
40
+ security import "$c" -k "$KEYCHAIN" -P "$KEY_PASSWORD" -T /usr/bin/codesign
41
+ done
42
}
43
44
delete_keychain ()
0 commit comments