Skip to content

Commit 1b8376a

Browse files
feat: add SKIP_BREW env var to ./scripts/bootstrap (#710)
1 parent a5680e1 commit 1b8376a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7-
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
7+
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ]; then
88
brew bundle check >/dev/null 2>&1 || {
99
echo "==> Installing Homebrew dependencies…"
1010
brew bundle

0 commit comments

Comments
 (0)