dotfiles/.config/yadm/bootstrap.d/001_homebrew
2023-07-28 09:58:17 -04:00

11 lines
296 B
Bash
Executable file

#!/bin/sh
system_type=$(uname -s)
if [ "$system_type" = "Darwin" ]; then
# install homebrew if it's missing
if ! command -v brew >/dev/null 2>&1; then
echo "Installing homebrew"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
fi