4985f75d74
Fix failing tests on shells that do not use && operator
17 lines
559 B
Python
17 lines
559 B
Python
from thefuck import utils, shells
|
|
from thefuck.utils import replace_argument
|
|
|
|
|
|
@utils.git_support
|
|
def match(command, settings):
|
|
return ('push' in command.script
|
|
and '! [rejected]' in command.stderr
|
|
and 'failed to push some refs to' in command.stderr
|
|
and 'Updates were rejected because the tip of your current branch is behind' in command.stderr)
|
|
|
|
|
|
@utils.git_support
|
|
def get_new_command(command, settings):
|
|
return shells.and_(replace_argument(command.script, 'push', 'pull'),
|
|
command.script)
|