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