Files
dotfiles/macos/install_brew.sh
T
2024-03-07 11:15:38 +02:00

13 lines
410 B
Bash
Executable File

#!/usr/bin/env bash
# Check for Homebrew and install if missing
if test ! $(which brew); then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> $HOME/.bash_profile.local
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> $ZDOTDIR/.zshrc.local
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
brew update