From 19ea86c3eadd07b096d9da854fd80f8d44037905 Mon Sep 17 00:00:00 2001 From: shalecraig Date: Mon, 1 Jun 2015 11:18:11 -0400 Subject: [PATCH] Add `--all` to `bubu` command. Per the error message: ``` $ bubu ... 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! ``` --- 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"