Files
obs-websocket/.github/scripts/utils.zsh/check_xcnotary
2022-08-04 22:53:29 -07:00

10 lines
268 B
Plaintext

autoload -Uz log_info log_error
log_info 'Checking for Homebrew...'
if (( ! ${+commands[brew]} )) {
log_error 'No Homebrew command found. Please install Homebrew (https://brew.sh)'
return 2
}
if (( ! ${+commands[xcnotary]} )) brew install akeru-inc/tap/xcnotary