diff --git a/cloudcommander/CHANGELOG.md b/cloudcommander/CHANGELOG.md index 35df1f03f..4e61dd797 100644 --- a/cloudcommander/CHANGELOG.md +++ b/cloudcommander/CHANGELOG.md @@ -1,6 +1,9 @@ ## 19.6.8-3 (06-03-2026) - Minor bugs fixed +## 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 5993f44d3..a83c0cf45 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-3" +version: "19.6.8-4" diff --git a/cloudcommander/rootfs/etc/cont-init.d/99-run.sh b/cloudcommander/rootfs/etc/cont-init.d/99-run.sh index 1369c8394..855bfefad 100755 --- a/cloudcommander/rootfs/etc/cont-init.d/99-run.sh +++ b/cloudcommander/rootfs/etc/cont-init.d/99-run.sh @@ -98,7 +98,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