diff options
author | Arun Isaac | 2022-01-04 11:29:27 +0530 |
---|---|---|
committer | Arun Isaac | 2022-01-06 10:01:05 +0530 |
commit | 80003d3f892846c4475a1365c5c5129424970def (patch) | |
tree | adcfb9446ce942393b8442b78f972321078f79c2 | |
parent | 344e428126b60932bff4c62c5ded8c36519155e8 (diff) | |
download | genenetwork2-80003d3f892846c4475a1365c5c5129424970def.tar.gz |
bin: Set shebang to sh instead of bash.
/bin/sh is present on Guix System and other distros while /bin/bash is
present only on other distros.
* bin/genenetwork2: Set shebang to sh instead of bash.
-rwxr-xr-x | bin/genenetwork2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/genenetwork2 b/bin/genenetwork2 index 934a10d8..eaf3f6ca 100755 --- a/bin/genenetwork2 +++ b/bin/genenetwork2 @@ -1,4 +1,4 @@ -#! /bin/bash +#! /bin/sh # # This is the startup script for GN2. It sets the environment variables to pick # up a Guix profile and allows for overriding parameters. |