Merge pull request #2562 from alexbelgium/copilot/fix-cloudcmd-file-not-found

Fix CloudCommander argument quoting in launch command
This commit is contained in:
Alexandre
2026-03-07 12:05:01 +01:00
committed by GitHub
3 changed files with 6 additions and 2 deletions

View File

@@ -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)

View File

@@ -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"

View File

@@ -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