mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-25 14:48:24 -05:00
10 lines
310 B
Plaintext
10 lines
310 B
Plaintext
autoload -Uz log_info
|
|
|
|
if (( ! ${+CODESIGN_IDENT} )) {
|
|
typeset -g CODESIGN_IDENT
|
|
log_info 'Setting up Apple Developer ID for application codesigning...'
|
|
read CODESIGN_IDENT'?Apple Developer Application ID: '
|
|
}
|
|
|
|
typeset -g CODESIGN_TEAM=$(print "${CODESIGN_IDENT}" | /usr/bin/sed -En 's/.+\((.+)\)/\1/p')
|