aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorOrioleNix <163466443+OrioleNix@users.noreply.github.com>2025-07-28 12:11:04 -0400
committerGitHub <noreply@github.com>2025-07-28 18:11:04 +0200
commit33ac018c8031d44c99299b84c7018cbb10cac839 (patch)
tree70c3d93f2d5440d4e2859c2dac132ccf3a8f65bf /scripts
parent4e16537da0f63888f69ff8d75173ec6e98e2de4e (diff)
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
Diffstat (limited to 'scripts')
-rw-r--r--scripts/APPIMAGE_INSTALL.sh2
-rw-r--r--scripts/DYNAMIC_INSTALL.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/APPIMAGE_INSTALL.sh b/scripts/APPIMAGE_INSTALL.sh
index 98eb538f..e8cafc89 100644
--- a/scripts/APPIMAGE_INSTALL.sh
+++ b/scripts/APPIMAGE_INSTALL.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env
# exit on error
set -e
diff --git a/scripts/DYNAMIC_INSTALL.sh b/scripts/DYNAMIC_INSTALL.sh
index 87b3715c..77660d4b 100644
--- a/scripts/DYNAMIC_INSTALL.sh
+++ b/scripts/DYNAMIC_INSTALL.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env
# exit on error
set -e