Skip to content

Commit

Permalink
fix(script): use right ref to install brew
Browse files Browse the repository at this point in the history
  • Loading branch information
tagoro9 committed Nov 4, 2021
1 parent 56ccf24 commit a678b99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ echo -e "🚀 Bootstrapping @tagoro9 dotfiles..."
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
# Install homebrew if it's not there
BREW_EXE=$(/usr/bin/which brew || echo 0)
if [ "$EXE" == "0" ]; then
if [ "$BREW_EXE" == "0" ]; then
echo -e "🛠 Installing Homebrew..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
exit 1
Expand Down

0 comments on commit a678b99

Please sign in to comment.