Revise certificate identifiers in README

Updated macOS certificate identifiers in the README to support users with multiple Apple Development certificates, otherwise `make` will fail regarding ambiguous certificates where the names/emails/10-char-IDs are the same.
This commit is contained in:
samy kamkar 2026-02-23 14:13:50 -08:00 committed by Ole André Vadla Ravnås
parent 4ba19d957a
commit e598d053f4

View file

@ -43,7 +43,7 @@ You can check it with the following command:
Which will return the certificate in the following format:
1) XXXXX "Apple Development: user@mail.com (XXXXX)"
1) XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX "Apple Development: user@mail.com (YYYYYYYYYY)"
If you do not have a certificate, follow this guide:
https://help.apple.com/xcode/mac/current/#/dev154b28f09.
@ -51,10 +51,10 @@ https://help.apple.com/xcode/mac/current/#/dev154b28f09.
Next export the name of your certificate to relevant environment
variables, and run `make`:
export MACOS_CERTID="Apple Development: user@mail.com (XXXXXXXXXX)"
export IOS_CERTID="Apple Development: user@mail.com (XXXXXXXXXX)"
export WATCHOS_CERTID="Apple Development: user@mail.com (XXXXXXXXXX)"
export TVOS_CERTID="Apple Development: user@mail.com (XXXXXXXXXX)"
export MACOS_CERTID=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
export IOS_CERTID=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
export WATCHOS_CERTID=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
export TVOS_CERTID=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
make
## Learn more