Closed kampka closed 4 years ago
On systems that do not have a standard filesystem layout or are not a Linux base (eg. Free-/OpenBSD), /bin/bash may not exist. Using /usr/bin/env bash is therefore considered the more portable way of setting the shebang.
/bin/bash
/usr/bin/env bash
Are you actually using this repo in one of these OSes?
I use NixOS as my daily driver which does not have /bin/bash.
@rgl How would you like to proceed with this?
Its now in master. Thank You!
On systems that do not have a standard filesystem layout or are not a Linux base (eg. Free-/OpenBSD),
/bin/bash
may not exist. Using/usr/bin/env bash
is therefore considered the more portable way of setting the shebang.