dotfiles/scripts/casks
2021-04-28 08:58:14 -04:00

12 lines
245 B
Bash
Executable File

#!/bin/sh
install_casks() {
brewfile=$DOTS/homebrew/Caskfile
if ! (/usr/local/bin/brew bundle check --file "$brewfile" > /dev/null)
then
/usr/local/bin/brew bundle --file "$brewfile"
fi
echo "casks installed ✓"
}