1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 06:38:32 +00:00

Re-write get_commands function

This commit is contained in:
gkodosis 2020-07-06 14:29:49 +03:00
parent a9aa53d71a
commit f451614fbf

View File

@ -11,9 +11,14 @@ COMMON_TYPOS = {
}
def get_commands(command):
if 'env' in command.script_parts[0]:
proc = Popen([str(command.script_parts[0]), 'commands'], stdout=PIPE)
def get_commands():
if which('pyenv'):
env = 'pyenv'
elif which('rbenv'):
env = 'rbenv'
elif which('goenv'):
env = 'goenv'
else:
proc = Popen([str(command.script_parts[1]), 'commands'], stdout=PIPE)
env = 'nodenv'
proc = Popen([env, 'commands'], stdout=PIPE)
return [line.decode('utf-8').strip() for line in proc.stdout.readlines()]