We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab20c00 commit 0ba270eCopy full SHA for 0ba270e
setup/mac/binary_distribution/install_prereqs.sh
@@ -59,7 +59,11 @@ if [[ "${with_update}" -eq 1 ]]; then
59
brew update || (sleep 30; brew update)
60
fi
61
62
-brew bundle --file="${BASH_SOURCE%/*}/Brewfile" --no-lock
+# Do not genereate a brew lockfile. This behavior was previously implemented
63
+# with the now deprecated '--no-lock' flag. This env variable allows
64
+# for the behavior to be consistent without using the flag.
65
+export HOMEBREW_BUNDLE_NO_LOCK=1
66
+brew bundle --file="${BASH_SOURCE%/*}/Brewfile"
67
68
if ! command -v pip3.12 &>/dev/null; then
69
echo 'ERROR: pip3.12 is NOT installed. The post-install step for the python@3.12 formula may have failed.' >&2
0 commit comments