From e598d053f4154fa78a26bb60d4f6cbc407ea387c Mon Sep 17 00:00:00 2001 From: samy kamkar Date: Mon, 23 Feb 2026 14:13:50 -0800 Subject: [PATCH] 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. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bf497c20..534f2183 100644 --- a/README.md +++ b/README.md @@ -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