diff --git a/scripts/provision_mac.sh b/scripts/provision_mac.sh index 9723532bad..464b0144e8 100755 --- a/scripts/provision_mac.sh +++ b/scripts/provision_mac.sh @@ -22,14 +22,11 @@ export HOMEBREW_NO_AUTO_UPDATE=1 # NOTE: Pin LLVM to a known good version since new releases # tend not to be backwards compatible # `bash` needed b/c macOS ships with bash 3, which doesn't support arrays properly -hb_packages=(python cmake ninja gpg llvm bash) -for item in "${hb_packages[@]}"; do - brew info "${item}" | grep 'Not installed' > /dev/null && brew install "${item}" -done +brew install python cmake ninja gpg llvm bash -type -P "pip3" >/dev/null || { - echo >&2 "pip3 not in path."; exit 1; -} +# type -P "pip3" >/dev/null || { +# echo >&2 "pip3 not in path."; exit 1; +# } # Python 3 packages pip3 install --user --upgrade pip