From de8f89dbc8edf3ac1d53dc43df3d139816e5e2f6 Mon Sep 17 00:00:00 2001 From: Romain Lespinasse Date: Thu, 30 Apr 2015 09:30:31 +0200 Subject: [PATCH] brew required a flag to upgrade all formulas Add a `--all` flag to upgrade all formulas ``` $ brew upgrade Warning: brew upgrade with no arguments will change behaviour soon! It currently upgrades all formula but this will soon change to require '--all'. Please update any workflows, documentation and scripts! $ brew upgrade --all ``` --- plugins/brew/brew.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/brew/brew.plugin.zsh b/plugins/brew/brew.plugin.zsh index 42fb80c9a..dcac639d5 100644 --- a/plugins/brew/brew.plugin.zsh +++ b/plugins/brew/brew.plugin.zsh @@ -1,2 +1,2 @@ alias brews='brew list -1' -alias bubu="brew update && brew upgrade && brew cleanup" +alias bubu="brew update && brew upgrade --all && brew cleanup"