Skip to content

Commit

Permalink
Homebrew: fix -Su and -Scc
Browse files Browse the repository at this point in the history
Both of these were missing a 'w' in the `brew` command, which caused them to
fail.
  • Loading branch information
xiongchiamiov committed Nov 21, 2014
1 parent 7349502 commit 23847ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/homebrew.sh
Expand Up @@ -79,7 +79,7 @@ homebrew_Suy() {
}

homebrew_Su() {
bre upgrade "$@"
brew upgrade "$@"
}

homebrew_Sy() {
Expand All @@ -95,7 +95,7 @@ homebrew_Sc() {
}

homebrew_Scc() {
bre cleanup -s "$@"
brew cleanup -s "$@"
}

homebrew_Sccc() {
Expand Down

0 comments on commit 23847ad

Please sign in to comment.