The shebang in the Bash install scripts is currently pointing to /bin/bash. This will lead to problems when running on systems that employ a non-standard layout for the binaries like, e.g., NixOS.
251 contains a patch fixing this by replacing /bin/bash with /usr/bin/env bash. release.sh was not changed because it didn't contain a shebang.
The shebang in the Bash install scripts is currently pointing to
/bin/bash
. This will lead to problems when running on systems that employ a non-standard layout for the binaries like, e.g., NixOS.251 contains a patch fixing this by replacing
/bin/bash
with/usr/bin/env bash
.release.sh
was not changed because it didn't contain a shebang.