This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
# ============================================================================== | |
# Install the prerequisites | |
# ============================================================================== | |
# Install Homebrew | |
if ! command -v brew &> /dev/null; then | |
echo "Installing Homebrew. You might be prompted the password..." | |
NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" |