From d78a0ce924095ee1752c2e6e7f250e8953b5232c Mon Sep 17 00:00:00 2001 From: prplwtf Date: Wed, 15 May 2024 19:50:05 +0200 Subject: [PATCH] fix `core`: scripts are still iffy --- blueprint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blueprint.sh b/blueprint.sh index 1646554..54b86b8 100644 --- a/blueprint.sh +++ b/blueprint.sh @@ -1399,7 +1399,7 @@ if [[ ( $2 == "-i" ) || ( $2 == "-install" ) || ( $2 == "-add" ) ]]; then VCMD=" # Run script while also parsing some useful variables for the install script to use. su "$WEBUSER" -s "$USERSHELL" -c " - cd \"$FOLDER\" + cd \"$FOLDER\"; EXTENSION_IDENTIFIER=\"$identifier\" \ EXTENSION_TARGET=\"$target\" \ EXTENSION_VERSION=\"$version\" \ @@ -1501,7 +1501,7 @@ if [[ ( $2 == "-r" ) || ( $2 == "-remove" ) ]]; then VCMD="y" # Run script while also parsing some useful variables for the uninstall script to use. su "$WEBUSER" -s "$USERSHELL" -c " - cd \"$FOLDER\" + cd \"$FOLDER\"; EXTENSION_IDENTIFIER=\"$identifier\" \ EXTENSION_TARGET=\"$target\" \ EXTENSION_VERSION=\"$version\" \ @@ -2012,7 +2012,7 @@ if [[ ( $2 == "-export" || $2 == "-e" ) ]]; then VCMD="y" # Run script while also parsing some useful variables for the export script to use. su "$WEBUSER" -s "$USERSHELL" -c " - cd \"$FOLDER\" + cd \"$FOLDER\"; EXTENSION_IDENTIFIER=\"$conf_info_identifier\" \ EXTENSION_TARGET=\"$conf_info_target\" \ EXTENSION_VERSION=\"$conf_info_version\" \