Skip to content

feat: install from homebrew in install.sh #9414

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 30, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
which only returns executables
  • Loading branch information
aslilac committed Aug 29, 2023
commit ed8cae791ad59c17c20a1f7a60e080f416c3a14e
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,8 @@ with_terraform() {

install_macos() {
# If there is no `brew` binary available, just default to installing standalone
if [ ! -fx $(which brew) ]; then
install_standalone
if [ ! -f $(which brew) ]; then
echo "hello"
return
fi

Expand Down