From 383f9eaf216e11e3d0e63c384bb408bcb304e645 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Mar 2026 17:27:54 +0000 Subject: [PATCH 2/3] Fix cloudcmd argument quoting: use unquoted expansion for proper CLI arg passing Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com> --- cloudcommander/rootfs/etc/cont-init.d/99-run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cloudcommander/rootfs/etc/cont-init.d/99-run.sh b/cloudcommander/rootfs/etc/cont-init.d/99-run.sh index a91ae2b0b..80b0a7af6 100755 --- a/cloudcommander/rootfs/etc/cont-init.d/99-run.sh +++ b/cloudcommander/rootfs/etc/cont-init.d/99-run.sh @@ -92,7 +92,8 @@ else bashio::log.error "Cloud Commander binary not found in /usr/src/app/bin or PATH." exit 1 fi -"$CLOUDCMD_BIN" '"'"$DROPBOX_TOKEN""$CUSTOMOPTIONS"'"' & +# shellcheck disable=SC2086 +"$CLOUDCMD_BIN" $DROPBOX_TOKEN $CUSTOMOPTIONS & bashio::net.wait_for 8000 localhost 900 || true bashio::log.info "Started !" exec nginx From 0819cdff8b3ab1ddeac55b94525fb891811716e5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 7 Mar 2026 09:33:41 +0000 Subject: [PATCH 3/3] Increment version to 19.6.8-2 and update changelog Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com> --- cloudcommander/CHANGELOG.md | 3 +++ cloudcommander/config.yaml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/cloudcommander/CHANGELOG.md b/cloudcommander/CHANGELOG.md index 55c8b16fd..5a361cc5c 100644 --- a/cloudcommander/CHANGELOG.md +++ b/cloudcommander/CHANGELOG.md @@ -1,4 +1,7 @@ +## 19.6.8-2 (2026-03-07) +- Fix argument quoting in cloudcmd launch command + ## 19.6.8 (2026-02-28) - Update to latest version from coderaiser/cloudcmd (changelog : https://github.com/coderaiser/cloudcmd/releases) diff --git a/cloudcommander/config.yaml b/cloudcommander/config.yaml index 30c967405..9041bd7fe 100644 --- a/cloudcommander/config.yaml +++ b/cloudcommander/config.yaml @@ -104,4 +104,4 @@ schema: slug: cloudcommander udev: true url: https://github.com/alexbelgium/hassio-addons/tree/master/cloudcommander -version: "19.6.8" +version: "19.6.8-2"