From 05f7f7428e11b95c378c6e3f87be60ee04c1de24 Mon Sep 17 00:00:00 2001 From: Per Larsen Date: Thu, 30 Nov 2023 03:36:23 -0800 Subject: [PATCH] CI: TODO --- scripts/provision_mac.sh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) 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