From 4ea4ff393c95724c64ef89a534b9fcaf9b695b60 Mon Sep 17 00:00:00 2001 From: OrioleNix <163466443+OrioleNix@users.noreply.github.com> Date: Tue, 29 Jul 2025 03:17:28 -0400 Subject: [PATCH 1/4] Make it actually non-bash dependent changed the way script_dir is found to not call on bash --- 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 e8cafc890..c58930e29 100644 --- a/scripts/APPIMAGE_INSTALL.sh +++ b/scripts/APPIMAGE_INSTALL.sh @@ -4,7 +4,7 @@ set -e # Move to script's directory -SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) +SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" cd "${SCRIPT_DIR}" #add .desktop file (which should allow most DE's easy access to the program From 698a52ad0eb54c9f37e887754a5014c7a622de1e Mon Sep 17 00:00:00 2001 From: OrioleNix <163466443+OrioleNix@users.noreply.github.com> Date: Tue, 29 Jul 2025 03:20:30 -0400 Subject: [PATCH 2/4] Make dynamic install not bash dependent Removes a bash requirement for the env call --- 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 77660d4b8..59e70581c 100644 --- a/scripts/DYNAMIC_INSTALL.sh +++ b/scripts/DYNAMIC_INSTALL.sh @@ -4,7 +4,7 @@ set -e # Move to script's directory -SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) +SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" cd "${SCRIPT_DIR}" #add .desktop file (which should allow most DE's easy access to the program From 0ab9140b8efe594489cdb633e517921f2c965786 Mon Sep 17 00:00:00 2001 From: OrioleNix <163466443+OrioleNix@users.noreply.github.com> Date: Tue, 29 Jul 2025 14:07:41 -0400 Subject: [PATCH 3/4] Update APPIMAGE_INSTALL.sh --- 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 c58930e29..8599cd5a5 100644 --- a/scripts/APPIMAGE_INSTALL.sh +++ b/scripts/APPIMAGE_INSTALL.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env +#!/usr/bin/env sh # exit on error set -e From 0621ec7001977cc53a679fae3b65286aadf47789 Mon Sep 17 00:00:00 2001 From: OrioleNix <163466443+OrioleNix@users.noreply.github.com> Date: Tue, 29 Jul 2025 14:07:59 -0400 Subject: [PATCH 4/4] Update DYNAMIC_INSTALL.sh --- 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 59e70581c..a9fbc2c40 100644 --- a/scripts/DYNAMIC_INSTALL.sh +++ b/scripts/DYNAMIC_INSTALL.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env +#!/usr/bin/env sh # exit on error set -e