diff options
author | zsloan | 2022-01-28 13:40:10 -0600 |
---|---|---|
committer | GitHub | 2022-01-28 13:40:10 -0600 |
commit | 631504680ce31b1a181cf6617e87ef0cc2cefa26 (patch) | |
tree | 6466dec0827bb823268a9c04798b42a4dedd007c /bin | |
parent | fadf0b836d512c9839f91df77f5f957e7aca6a1c (diff) | |
download | genenetwork2-631504680ce31b1a181cf6617e87ef0cc2cefa26.tar.gz |
Revert 'bin: Set shebang to sh instead of bash'
It seems that this also needed to be reverted, because I was getting the error below (which was prevented by reverting to #! /bin/bash):
./bin/genenetwork2: 135: ./bin/genenetwork2: Syntax error: redirection unexpected
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/genenetwork2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/genenetwork2 b/bin/genenetwork2 index ea5a4f50..ea70835b 100755 --- a/bin/genenetwork2 +++ b/bin/genenetwork2 @@ -1,4 +1,4 @@ -#! /bin/sh -e +#! /bin/bash # # This is the startup script for GN2. It sets the environment variables to pick # up a Guix profile and allows for overriding parameters. |