From 00846a88cfb699c668664c5c697cbe71dcda8b7b Mon Sep 17 00:00:00 2001 From: Robert Middleswarth Date: Tue, 30 Aug 2022 17:55:11 -0400 Subject: [PATCH] More tweaking as I am less familiar with the code --- build/joinApps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/joinApps.sh b/build/joinApps.sh index 6ca46ba..c07dde9 100755 --- a/build/joinApps.sh +++ b/build/joinApps.sh @@ -62,7 +62,7 @@ for app in template/apps/*.json; do # Pre-Install Script if Script=$( echo "$appjson" | jq -e '.preInstallScript' ) ; then scriptexec=$( jq '.tools[] | select(.File=='"$Script"') | .Exec' "$appinfo" ) - Script="
Pre-installation script must be RAN before you install: wget -qO- ${rawrepo}tools/${scriptexec:1:-1} | bash" + Script="
Pre-installation script must be RAN before you install: wget -qO- ${rawrepo}tools/${Script:1:-1} | bash" #Script="
Pre-installation script must be RAN before you install: wget -qO- ${rawrepo}tools/${Script:1:-1} | ${scriptexec:1:-1}" appjson=$( echo "$appjson" | jq 'del(.preInstallScript)' ) else