mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-02 05:44:03 +02:00
Merge pull request #2562 from alexbelgium/copilot/fix-cloudcmd-file-not-found
Fix CloudCommander argument quoting in launch command
This commit is contained in:
@@ -1,6 +1,9 @@
|
|||||||
## 19.6.8-3 (06-03-2026)
|
## 19.6.8-3 (06-03-2026)
|
||||||
- Minor bugs fixed
|
- Minor bugs fixed
|
||||||
|
|
||||||
|
## 19.6.8-2 (2026-03-07)
|
||||||
|
- Fix argument quoting in cloudcmd launch command
|
||||||
|
|
||||||
## 19.6.8 (2026-02-28)
|
## 19.6.8 (2026-02-28)
|
||||||
- Update to latest version from coderaiser/cloudcmd (changelog : https://github.com/coderaiser/cloudcmd/releases)
|
- Update to latest version from coderaiser/cloudcmd (changelog : https://github.com/coderaiser/cloudcmd/releases)
|
||||||
|
|
||||||
|
|||||||
@@ -104,4 +104,4 @@ schema:
|
|||||||
slug: cloudcommander
|
slug: cloudcommander
|
||||||
udev: true
|
udev: true
|
||||||
url: https://github.com/alexbelgium/hassio-addons/tree/master/cloudcommander
|
url: https://github.com/alexbelgium/hassio-addons/tree/master/cloudcommander
|
||||||
version: "19.6.8-3"
|
version: "19.6.8-4"
|
||||||
|
|||||||
@@ -98,7 +98,8 @@ else
|
|||||||
bashio::log.error "Cloud Commander binary not found in /usr/src/app/bin or PATH."
|
bashio::log.error "Cloud Commander binary not found in /usr/src/app/bin or PATH."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
"$CLOUDCMD_BIN" '"'"$DROPBOX_TOKEN""$CUSTOMOPTIONS"'"' &
|
# shellcheck disable=SC2086
|
||||||
|
"$CLOUDCMD_BIN" $DROPBOX_TOKEN $CUSTOMOPTIONS &
|
||||||
bashio::net.wait_for 8000 localhost 900 || true
|
bashio::net.wait_for 8000 localhost 900 || true
|
||||||
bashio::log.info "Started !"
|
bashio::log.info "Started !"
|
||||||
exec nginx
|
exec nginx
|
||||||
|
|||||||
Reference in New Issue
Block a user