mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
10 lines
268 B
Plaintext
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
|