feat: Update 14 and remove 1 files
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 44s
Build-Test-Publish / build (linux/arm64) (push) Successful in 3m32s

This commit is contained in:
j
2025-12-30 11:25:22 +13:00
parent 9ff9596c8a
commit 30c4077109
15 changed files with 40 additions and 191 deletions

View File

@@ -78,7 +78,8 @@ source "${SERVICE_ENV}"
set +a
# -- Locate and validate command script --
COMMAND_TO_RUN="${TEMPLATE_PATH}/${DSCOMMAND}"
COMMAND_PATH="${TEMPLATE_PATH}"
COMMAND_TO_RUN="${COMMAND_PATH}/${DSCOMMAND}"
if [[ ! -f "${COMMAND_TO_RUN}" ]]; then
COMMAND_TO_RUN="${COMMAND_TO_RUN}.sh"
fi
@@ -86,4 +87,4 @@ fi
# -- Execute the command with any remaining arguments --
cd "${TEMPLATE_PATH}"
exec bash "${COMMAND_TO_RUN}" "$@"
exec bash cd "${COMMAND_PATH}" && "${COMMAND_TO_RUN}" "$@"