Files
thefuck/thefuck/rules/brew_update_formula.py
T
Pablo Santiago Blum de Aguiar 9d9820676a #N/A Add a new rule brew_update_formula
2016-04-20 22:27:39 -03:00

13 lines
353 B
Python

from thefuck.utils import for_app
@for_app('brew', at_least=2)
def match(command):
return ('update' in command.script
and "Error: This command updates brew itself" in command.stderr
and "Use 'brew upgrade <formula>'" in command.stderr)
def get_new_command(command):
return command.script.replace('update', 'upgrade')