marxin / cvise

Super-parallel Python port of the C-Reduce
Other
219 stars 25 forks source link

cvise.py: call shell vial `/usr/bin/env` indirection instead of `/bin` #121

Closed trofi closed 9 months ago

trofi commented 9 months ago

My system (NixOS) has one well-defined shell: /bin/sh.

But normally programs use either /run/current-system/sw/bin/bash or the bash from PATH. They use /usr/bin/env for that.

The change calls shell via /usr/bin/env to use PATH lookup.

marxin commented 9 months ago

Thanks for the contribution.