diff options
author | Alessandro <alessandro.buonerba@ovoenergy.com> | 2020-09-14 19:32:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-14 20:32:23 +0200 |
commit | 2bc1da7f377e78cdfa74190ffe5baf6c814d0fce (patch) | |
tree | 7bab5122cf3722284f5cc8bd4701ad2910e26136 /plugins/brew/brew.plugin.zsh | |
parent | 814e0b3c25316879b2f86e017701449cc2302ad4 (diff) | |
download | zsh-2bc1da7f377e78cdfa74190ffe5baf6c814d0fce.tar.gz zsh-2bc1da7f377e78cdfa74190ffe5baf6c814d0fce.tar.bz2 zsh-2bc1da7f377e78cdfa74190ffe5baf6c814d0fce.zip |
brew: replace deprecated brew cask outdated command (#9253)
Diffstat (limited to 'plugins/brew/brew.plugin.zsh')
-rw-r--r-- | plugins/brew/brew.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/brew/brew.plugin.zsh b/plugins/brew/brew.plugin.zsh index fdea76c74..c8b1e3568 100644 --- a/plugins/brew/brew.plugin.zsh +++ b/plugins/brew/brew.plugin.zsh @@ -4,5 +4,5 @@ alias brewsp='brew list --pinned' alias bubo='brew update && brew outdated' alias bubc='brew upgrade && brew cleanup' alias bubu='bubo && bubc' -alias bcubo='brew update && brew cask outdated' -alias bcubc='brew cask reinstall $(brew cask outdated) && brew cleanup' +alias bcubo='brew update && brew outdated --cask' +alias bcubc='brew cask reinstall $(brew outdated --cask) && brew cleanup' |