diff options
author | Robby Russell <robby@planetargon.com> | 2019-02-12 11:34:22 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-12 11:34:22 -0800 |
commit | 7d6f754b6807e312089179e3a4719145c58c7986 (patch) | |
tree | 342b52aac5de7bd93d0e3d1929cd896b890b245f /plugins/brew/brew.plugin.zsh | |
parent | 86ea319536a8012b9e8f508d3d257029014bdafe (diff) | |
parent | 7dab4f07e614ad2ebeabb4f3de0bbacb67317540 (diff) | |
download | zsh-7d6f754b6807e312089179e3a4719145c58c7986.tar.gz zsh-7d6f754b6807e312089179e3a4719145c58c7986.tar.bz2 zsh-7d6f754b6807e312089179e3a4719145c58c7986.zip |
Merge pull request #7535 from pahakalle/master
Ads brew cask update to brew plugin
Diffstat (limited to 'plugins/brew/brew.plugin.zsh')
-rw-r--r-- | plugins/brew/brew.plugin.zsh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/brew/brew.plugin.zsh b/plugins/brew/brew.plugin.zsh index 60b81f8ec..cfbaa3480 100644 --- a/plugins/brew/brew.plugin.zsh +++ b/plugins/brew/brew.plugin.zsh @@ -4,6 +4,8 @@ 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' if command mkdir "$ZSH_CACHE_DIR/.brew-completion-message" 2>/dev/null; then print -P '%F{yellow}'Oh My Zsh brew plugin: |