/
niceSOFT
/
git-lfs
Обзор
Документация
Войти
/
niceSOFT
/
git-lfs
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
script/notarize
12 строк
451 B
brian m. carlson
Add a script to notarize macOS binaries
25 окт 2023, 18:11
Не верифицирован
25 окт 2023, 18:11
c3e9c12
Код
Авторство
О чём код?
#!/bin/sh # # Notarizes the file given on the command line with the Apple ID in # $DARWIN_DEV_USER, the password in $DARWIN_DEV_PASS, and the team ID (usually # ten characters) in $DARWIN_DEV_TEAM. # # This script exists to not echo these variables into the log. Don't run this # on a multi-user system, only in CI. xcrun notarytool submit "$1" \ --apple-id "$DARWIN_DEV_USER" --password "$DARWIN_DEV_PASS" --team-id "$DARWIN_DEV_TEAM" \ --wait