Update README.md to clarify positional argument usage for notarytool keychain profile

This commit is contained in:
2026-01-22 15:39:51 +09:00
parent 010e18ba91
commit 0ac4c93a4e

View File

@@ -40,8 +40,9 @@ This repo includes `build/macos/build_sign_notarize.sh` to automate:
- Create a `notarytool` keychain profile (recommended) so you dont have to pass secrets on the command line:
```bash
xcrun notarytool store-credentials \
--keychain-profile "<profile-name>" \
# NOTE: <profile-name> is a positional argument (not a flag).
# Pick any name you want, e.g. "strawberry-notary".
xcrun notarytool store-credentials "<profile-name>" \
--apple-id "<your-apple-id>" \
--team-id "<TEAMID>" \
--password "<app-specific-password>"