Split brews and casks to different files

This commit is contained in:
Noah Masur
2020-06-06 10:53:20 -06:00
parent 7756526916
commit 71e8f03bab
4 changed files with 60 additions and 36 deletions

9
scripts/install_casks Executable file
View File

@ -0,0 +1,9 @@
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 ✓"
}