Skip to content

Commit

Permalink
Merge pull request #106 from JSafaiyeh/master
Browse files Browse the repository at this point in the history
Remove --all from brew upgrade
  • Loading branch information
guarinogabriel committed Oct 11, 2016
2 parents ca42811 + 059ff7c commit 23fda40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mac-cli/plugins/brew
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ case "$fn" in
"brew:update")
echo "Updating Homebrew and its installed packages..."
if [ "$echocommand" == "true" ]; then
echo "${GREEN}brew update; brew upgrade --all; brew cleanup; brew prune; brew cask cleanup;\n${NC}"
echo "${GREEN}brew update; brew upgrade; brew cleanup; brew prune; brew cask cleanup;\n${NC}"
fi
brew update; brew upgrade --all; brew cleanup; brew prune; brew cask cleanup;
brew update; brew upgrade; brew cleanup; brew prune; brew cask cleanup;
;;

esac
4 changes: 2 additions & 2 deletions mac-cli/plugins/general
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ case "$fn" in

echo "Updating Homebrew and its installed packages..."
if [ "$echocommand" == "true" ]; then
echo "${GREEN}brew update; brew upgrade --all; brew cleanup; brew prune; brew cask cleanup;\n${NC}"
echo "${GREEN}brew update; brew upgrade; brew cleanup; brew prune; brew cask cleanup;\n${NC}"
fi
brew update; brew upgrade --all; brew cleanup; brew prune; brew cask cleanup;
brew update; brew upgrade; brew cleanup; brew prune; brew cask cleanup;

echo "Updating npm and its installed packages..."
if [ "$echocommand" == "true" ]; then
Expand Down

0 comments on commit 23fda40

Please sign in to comment.