dotfiles/scripts/casks

12 lines
245 B
Plaintext
Raw Normal View History

2020-07-31 01:12:17 +00:00
#!/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 ✓"
}