Skip to content

Commit

Permalink
fix(tools): change homebrew install command
Browse files Browse the repository at this point in the history
  • Loading branch information
trystan2k committed Nov 20, 2021
1 parent 3fd983e commit 1d9416b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/homebrew.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ execute() {

case "$OSTYPE" in
darwin*)
sh -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
result=$?
;;
linux*)
linux=1
sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
result=$?
;;
*)
Expand Down

0 comments on commit 1d9416b

Please sign in to comment.