You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A new MacBook Pro (m1pro) with macOS 12.5 Monterey and homebrew is not installed before.
Log
ancientmodern@MacBook-Pro$ build_support/packages.sh
PACKAGES WILL BE INSTALLED. THIS MAY BREAK YOUR EXISTING TOOLCHAIN.
YOU ACCEPT ALL RESPONSIBILITY BY PROCEEDING.
Proceed? [Y/n] : Y
++ uname
++ tr '[:lower:]''[:upper:]'
+ UNAME=DARWIN
+ case$UNAMEin
+ install_mac
++ which brew
+ test '!'
+ echo 'Installing Homebrew (https://brew.sh/)'
Installing Homebrew (https://brew.sh/)
++ curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install
+ ruby -e '#!/usr/bin/rubyabort <<EOSError: The Ruby Homebrew installer is now disabled and has been rewritten inBash. Please migrate to the following command: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"EOS'
Error: The Ruby Homebrew installer is now disabled and has been rewritten in
Bash. Please migrate to the following command:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Then I manually ran /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" and build_support/packages.sh, and everything went well. Seems that the ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"should be replaced by /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
The text was updated successfully, but these errors were encountered:
Environment
A new MacBook Pro (m1pro) with macOS 12.5 Monterey and homebrew is not installed before.
Log
Then I manually ran
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
andbuild_support/packages.sh
, and everything went well. Seems that theruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
should be replaced by/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
The text was updated successfully, but these errors were encountered: