Attempting multiline bash command for xcpretty

pull/751/head
Morgan Pretty 12 months ago
parent 3c81e3a487
commit 5bd0d5d640

@ -6,8 +6,16 @@ local ci_dep_mirror(want_mirror) = (if want_mirror then ' -DLOCAL_MIRROR=https:/
// xcpretty
local xcpretty_commands = [
'if [[ $(command -v brew) != "" ]]; then; brew install xcpretty; fi;',
'if [[ $(command -v brew) == "" ]]; then; gem install xcpretty; fi;'
|||
if [[ $(command -v brew) != "" ]]; then
brew install xcpretty
fi
|||,
|||
if [[ $(command -v brew) == "" ]]; then
gem install xcpretty
fi
|||,
];

Loading…
Cancel
Save