Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tarebyte committed Oct 1, 2023
1 parent 936089a commit aa29a71
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .config/fish/config.fish
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# https://github.com/Homebrew/install/blob/abe5c4fe830cf6c36d1916b9eaac3ee818c949b8/uninstall.sh#L68-L73
switch (uname -m)
case arm64
set -gx HOMEBREW_PREFIX /opt/homebrew
set -gx HOMEBREW_PREFIX /opt/homebrew
case "*"
set -gx HOMEBREW_PREFIX /usr/local
set -gx HOMEBREW_PREFIX /usr/local
end

############
Expand Down
6 changes: 5 additions & 1 deletion .config/fish/functions/brewup.fish
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
function brewup -d "Bring all of the homebrew packages up to speed"
brew update; brew doctor; brew outdated; brew upgrade; brew cleanup
brew update
brew doctor
brew outdated
brew upgrade
brew cleanup
end

0 comments on commit aa29a71

Please sign in to comment.