mirror of
https://github.com/Aitum/obs-aitum-multistream.git
synced 2024-11-22 10:22:42 +01:00
23 lines
641 B
Plaintext
Executable File
23 lines
641 B
Plaintext
Executable File
autoload -Uz is-at-least log_group log_info log_error log_status read_codesign
|
|
|
|
local macos_version=$(sw_vers -productVersion)
|
|
|
|
log_group 'Install macOS build requirements'
|
|
log_info 'Checking macOS version...'
|
|
if ! is-at-least 11.0 ${macos_version}; then
|
|
log_error "Minimum required macOS version is 11.0, but running on macOS ${macos_version}"
|
|
return 2
|
|
else
|
|
log_status "macOS ${macos_version} is recent"
|
|
fi
|
|
|
|
log_info 'Checking for Homebrew...'
|
|
if (( ! ${+commands[brew]} )) {
|
|
log_error 'No Homebrew command found. Please install Homebrew (https://brew.sh)'
|
|
return 2
|
|
}
|
|
|
|
brew bundle --file ${SCRIPT_HOME}/.Brewfile
|
|
rehash
|
|
log_group
|