1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-07 07:50:40 +01:00

fix(brew)!: update bcubc alias to use brew upgrade --cask (#9501)

BREAKING CHANGE: changes deprecated `brew cask reinstall $(...)` alias to use
`brew upgrade --cask` instead. If you don't have this command, run `brew update` to
get the latest Homebrew CLI version.

Co-authored-by: jakepez <jake@findjake.com>
This commit is contained in:
Josh E. Roberts
2020-12-30 13:56:56 -05:00
committed by GitHub
parent 4b2431e8b1
commit a251233bec
2 changed files with 12 additions and 12 deletions

View File

@@ -6,4 +6,4 @@ alias bubc='brew upgrade && brew cleanup'
alias bubu='bubo && bubc'
alias buf='brew upgrade --formula'
alias bcubo='brew update && brew outdated --cask'
alias bcubc='brew cask reinstall $(brew outdated --cask) && brew cleanup'
alias bcubc='brew upgrade --cask && brew cleanup'