mirror of
https://github.com/obsproject/obs-studio.git
synced 2025-12-28 07:55:01 +00:00
8 lines
192 B
Plaintext
8 lines
192 B
Plaintext
if (( _loglevel > 1 )) {
|
|
xcodebuild ${@}
|
|
} else {
|
|
local -a xcbeautify_opts=()
|
|
if (( _loglevel == 0 )) xcbeautify_opts+=(--quiet)
|
|
xcodebuild ${@} 2>&1 | xcbeautify ${xcbeautify_opts}
|
|
}
|