Skip to content

Commit 33ac018

Browse files
authored
Fixing shebang statements for edge cases (#1105)
* selecting /usr/bin/env helps edgecases There are systems (though rare) that don't have bash, but instead only have sh, or zsh, etc, which would otherwise be able to use our shell scripts, there's no reason to not allow the environment to select its shell. * Update DYNAMIC_INSTALL.sh This applies to both the dynamic and appimage installations
1 parent 4e16537 commit 33ac018

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/APPIMAGE_INSTALL.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env
22

33
# exit on error
44
set -e

scripts/DYNAMIC_INSTALL.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env
22

33
# exit on error
44
set -e

0 commit comments

Comments
 (0)