diff options
author | Arun Isaac | 2022-01-04 11:29:27 +0530 |
---|---|---|
committer | Arun Isaac | 2022-01-04 12:10:56 +0530 |
commit | 10b5e59ccebe44f99d823c50f6ed562b56b3e31c (patch) | |
tree | f3fb5a6f69ee868055cf981745eb824dd1b9f699 | |
parent | 2f94ca83b2ab9928760f278faaa9c5e354a4fecf (diff) | |
download | genenetwork2-10b5e59ccebe44f99d823c50f6ed562b56b3e31c.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. |