Skip to content

Commit 27ce482

Browse files
feat: add SKIP_BREW env var to ./scripts/bootstrap (#33)
1 parent 71c7c33 commit 27ce482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/bootstrap

+1-1
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)