edc / bass

Make Bash utilities usable in Fish shell
MIT License
2.2k stars 70 forks source link

Use the same Python interpreter for subprocesses as was used to invoke the script. #84

Closed nirvdrum closed 4 years ago

nirvdrum commented 4 years ago

In particular, if was used to invoke the script, then it should used for its subprocess execution, otherwise it may pick up Python 2 or fail if there is no command available (see PEP 394).

nirvdrum commented 4 years ago

This fixes #79 for me.

edc commented 4 years ago

Thank you for the fix!!