1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-02-23 09:42:02 +00:00
2020-06-06 10:53:20 -06:00

10 lines
234 B
Plaintext
Executable File

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 ✓"
}