14 lines
267 B
Bash
Executable File
14 lines
267 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "***** INSTALL HOMEBREW PACKAGES *****"
|
|
|
|
DOTFILES=$(cd "$(dirname "$0")/.." && pwd)
|
|
|
|
# Install required tools
|
|
brew bundle install --file="$DOTFILES/brew/Brewfile"
|
|
|
|
# Install optional tools (prompted by fzf)
|
|
"$DOTFILES/brew/install-extra.fish"
|
|
|
|
echo
|