From c67fc809b97db820529f1714a7f0d3887776c31e Mon Sep 17 00:00:00 2001 From: John Date: Sun, 27 Apr 2025 14:56:11 +1200 Subject: [PATCH] Working --- templates/dropshell-agent/_allservicesstatus.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/dropshell-agent/_allservicesstatus.sh b/templates/dropshell-agent/_allservicesstatus.sh index 0e16fd2..60ec15e 100644 --- a/templates/dropshell-agent/_allservicesstatus.sh +++ b/templates/dropshell-agent/_allservicesstatus.sh @@ -27,7 +27,7 @@ CURRENT_EXIT_CODE=0 load_dotenv(){ local file_path=$1 if [ -f "${file_path}" ]; then - source <("${file_path}" | sed -e '/^#/d;/^\s*$/d' -e "s/'/'\\\''/g" -e "s/=\(.*\)/='\1'/g") + source "${file_path}" fi }