We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ba270e commit 0d0f820Copy full SHA for 0d0f820
setup/mac/source_distribution/install_prereqs.sh
@@ -32,4 +32,8 @@ if ! command -v brew &>/dev/null; then
32
exit 4
33
fi
34
35
-brew bundle --file="${BASH_SOURCE%/*}/Brewfile" --no-lock
+# Do not genereate a brew lockfile. This behavior was previously implemented
36
+# with the now deprecated '--no-lock' flag. This env variable allows
37
+# for the behavior to be consistent without using the flag.
38
+export HOMEBREW_BUNDLE_NO_LOCK=1
39
+brew bundle --file="${BASH_SOURCE%/*}/Brewfile"
0 commit comments