From 33ac018c8031d44c99299b84c7018cbb10cac839 Mon Sep 17 00:00:00 2001 From: OrioleNix <163466443+OrioleNix@users.noreply.github.com> Date: Mon, 28 Jul 2025 12:11:04 -0400 Subject: 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 --- scripts/DYNAMIC_INSTALL.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/DYNAMIC_INSTALL.sh') 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 -- cgit