File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,15 +70,15 @@ brew: xcode ## install homebrew
70
70
ifeq ($(UNAME ) , Darwin)
71
71
@if ! command -v brew >/dev/null 2>&1; then \
72
72
echo "Installing Homebrew..."; \
73
- /bin/bash -c "$$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"; \
73
+ NONINTERACTIVE=1 /bin/bash -c "$$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"; \
74
74
else \
75
75
echo "brew already installed."; \
76
76
fi
77
77
else ifeq ($(UNAME), Linux)
78
78
@if [ "${ID_LIKE}" = "debian" ]; then \
79
79
if ! command -v brew >/dev/null 2>&1; then \
80
80
echo "Installing Homebrew..."; \
81
- /bin/bash -c "$$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"; \
81
+ NONINTERACTIVE=1 /bin/bash -c "$$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"; \
82
82
echo ""; \
83
83
echo "To add Homebrew to your PATH, run these commands:"; \
84
84
echo 'eval "$$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"'; \
You can’t perform that action at this time.
0 commit comments