Files
thefuck/thefuck/rules/mvn_no_command.py
T
2017-08-31 17:58:56 +02:00

12 lines
273 B
Python

from thefuck.utils import for_app
@for_app('mvn')
def match(command):
return 'No goals have been specified for this build' in command.output
def get_new_command(command):
return [command.script + ' clean package',
command.script + ' clean install']