mirror of
https://github.com/nvbn/thefuck.git
synced 2025-03-20 01:28:56 +00:00
Bump to 3.30
This commit is contained in:
parent
2581c2b00a
commit
f1d01dd16c
2
setup.py
2
setup.py
@ -31,7 +31,7 @@ elif (3, 0) < version < (3, 4):
|
|||||||
' ({}.{} detected).'.format(*version))
|
' ({}.{} detected).'.format(*version))
|
||||||
sys.exit(-1)
|
sys.exit(-1)
|
||||||
|
|
||||||
VERSION = '3.29'
|
VERSION = '3.30'
|
||||||
|
|
||||||
install_requires = ['psutil', 'colorama', 'six', 'decorator', 'pyte']
|
install_requires = ['psutil', 'colorama', 'six', 'decorator', 'pyte']
|
||||||
extras_require = {':python_version<"3.4"': ['pathlib2'],
|
extras_require = {':python_version<"3.4"': ['pathlib2'],
|
||||||
|
@ -3,10 +3,11 @@ from thefuck.shells import shell
|
|||||||
|
|
||||||
|
|
||||||
def match(command):
|
def match(command):
|
||||||
|
file_to_run = os.path.expanduser(command.script_parts[0])
|
||||||
return (command.script.startswith('./')
|
return (command.script.startswith('./')
|
||||||
and 'permission denied' in command.output.lower()
|
and 'permission denied' in command.output.lower()
|
||||||
and os.path.exists(command.script_parts[0])
|
and os.path.exists(file_to_run)
|
||||||
and not os.access(command.script_parts[0], os.X_OK))
|
and not os.access(file_to_run, os.X_OK))
|
||||||
|
|
||||||
|
|
||||||
def get_new_command(command):
|
def get_new_command(command):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user