mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-13 09:42:27 +00:00
5 lines
195 B
Bash
5 lines
195 B
Bash
# Updates Homebrew installation from the Brewfile
|
|
function update-brewfile() {
|
|
brew bundle check --file "$HOME/.config/Brewfile" || brew bundle --cleanup -f --file "$HOME/.config/Brewfile"
|
|
}
|