From 904c94469e98ba45910d4d7bd271b6d28c6951f9 Mon Sep 17 00:00:00 2001
From: Sorin Ionescu <sorin.ionescu@gmail.com>
Date: Tue, 26 May 2015 22:05:49 -0400
Subject: [PATCH] Consolidate brew update and upgrade aliases

---
 modules/homebrew/README.md | 3 +--
 modules/homebrew/init.zsh  | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/modules/homebrew/README.md b/modules/homebrew/README.md
index 69a4e87b9f..84b43865db 100644
--- a/modules/homebrew/README.md
+++ b/modules/homebrew/README.md
@@ -13,8 +13,7 @@ Aliases
   - `brewi` installs a formula.
   - `brewl` lists installed formulae.
   - `brews` searches for a formula.
-  - `brewU` upgrades Homebrew and outdated brews.
-  - `brewu` upgrades Homebrew.
+  - `brewu` updates Homebrew and formulae.
   - `brewx` uninstalls a formula.
 
 ### Homebrew Cask
diff --git a/modules/homebrew/init.zsh b/modules/homebrew/init.zsh
index a5979cc9ce..1ebe793d99 100644
--- a/modules/homebrew/init.zsh
+++ b/modules/homebrew/init.zsh
@@ -20,8 +20,7 @@ alias brewC='brew cleanup --force'
 alias brewi='brew install'
 alias brewl='brew list'
 alias brews='brew search'
-alias brewu='brew upgrade'
-alias brewU='brew update && brew upgrade'
+alias brewu='brew update && brew upgrade --all'
 alias brewx='brew remove'
 
 # Homebrew Cask