mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
9 lines
373 B
Fish
9 lines
373 B
Fish
function homebrewBackup --description "Create a snapshot of all currently installed Homebrew, Cask, Mac App Store, and WhaleBrew installations"
|
|
switch $hostname
|
|
case mac-mini
|
|
brew bundle dump --force --describe --file=~/.dotfiles/Brewfile
|
|
case '*'
|
|
brew bundle dump --force --describe --file=~/.dotfiles/Brewfile-Work
|
|
end
|
|
end
|