From 54125e3f234dddaead5db296edcf3e2b6695b8f6 Mon Sep 17 00:00:00 2001 From: OrioleNix <163466443+OrioleNix@users.noreply.github.com> Date: Mon, 28 Jul 2025 11:53:02 -0400 Subject: [PATCH 1/2] 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. --- scripts/APPIMAGE_INSTALL.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/APPIMAGE_INSTALL.sh b/scripts/APPIMAGE_INSTALL.sh index 98eb538ff..e8cafc890 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 From bfbda514b03cef4fe3e9d063ea72e9d06ebb3855 Mon Sep 17 00:00:00 2001 From: OrioleNix <163466443+OrioleNix@users.noreply.github.com> Date: Mon, 28 Jul 2025 11:55:30 -0400 Subject: [PATCH 2/2] Update DYNAMIC_INSTALL.sh This applies to both the dynamic and appimage installations --- scripts/DYNAMIC_INSTALL.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/DYNAMIC_INSTALL.sh b/scripts/DYNAMIC_INSTALL.sh index 87b3715c9..77660d4b8 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