Merge branch 'patch-1' of https://github.com/reitermarkus/thefuck into reitermarkus-patch-1

# Conflicts:
#	tests/rules/test_brew_upgrade.py
This commit is contained in:
Vladimir Iakovlev
2017-09-10 07:56:33 +02:00
3 changed files with 0 additions and 33 deletions
-17
View File
@@ -1,17 +0,0 @@
# Appends --all to the brew upgrade command
#
# Example:
# > brew upgrade
# Warning: brew upgrade with no arguments will change behaviour soon!
# It currently upgrades all formula but this will soon change to require '--all'.
from thefuck.specific.brew import brew_available
enabled_by_default = brew_available
def match(command):
return command.script == 'brew upgrade'
def get_new_command(command):
return command.script + ' --all'