Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f5dbcda

Browse files
committedMar 13, 2025
feat: add SKIP_BREW env var to ./scripts/bootstrap (#3995)
1 parent 2dbec98 commit f5dbcda

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)
Please sign in to comment.