From 23847adfa2cb93289aa2f5e24fa2237b7b69ddca Mon Sep 17 00:00:00 2001 From: xiongchiamiov Date: Fri, 21 Nov 2014 10:21:26 -0800 Subject: [PATCH] Homebrew: fix -Su and -Scc Both of these were missing a 'w' in the `brew` command, which caused them to fail. --- lib/homebrew.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/homebrew.sh b/lib/homebrew.sh index b2443fdf..d5baf88f 100644 --- a/lib/homebrew.sh +++ b/lib/homebrew.sh @@ -79,7 +79,7 @@ homebrew_Suy() { } homebrew_Su() { - bre upgrade "$@" + brew upgrade "$@" } homebrew_Sy() { @@ -95,7 +95,7 @@ homebrew_Sc() { } homebrew_Scc() { - bre cleanup -s "$@" + brew cleanup -s "$@" } homebrew_Sccc() {