Skip to content

Commit

Permalink
macos13: don’t install Homebrew if already installed (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
delan committed Jan 7, 2025
1 parent 68a98f4 commit c48d200
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion macos13/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ sudo -i touch /var/root/utils/utils.sh
sudo -i /Volumes/a/init/install-xcode-clt.sh

# Install Homebrew
NONINTERACTIVE=1 /Volumes/a/init/install-homebrew.sh
if ! [ -e /usr/local/bin/brew ]; then
NONINTERACTIVE=1 /Volumes/a/init/install-homebrew.sh
fi

# Install rustup and the latest Rust
if ! [ -e /Users/servo/.rustup ]; then
Expand Down

0 comments on commit c48d200

Please sign in to comment.