mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
10 lines
234 B
Plaintext
10 lines
234 B
Plaintext
|
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 ✓"
|
||
|
}
|