2020-07-30 21:12:17 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-06-06 10:53:20 -06:00
|
|
|
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 ✓"
|
|
|
|
}
|