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