Skip to content

Commit 0d0f820

Browse files
author
Aiden2244
committed
removed --no-lock from source distribution build script
1 parent 0ba270e commit 0d0f820

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup/mac/source_distribution/install_prereqs.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,8 @@ if ! command -v brew &>/dev/null; then
3232
exit 4
3333
fi
3434

35-
brew bundle --file="${BASH_SOURCE%/*}/Brewfile" --no-lock
35+
# 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

Comments
 (0)