Merge branch 'master' into copilot/fix-cloudcmd-file-not-found

This commit is contained in:
Alexandre
2026-03-07 12:04:53 +01:00
committed by GitHub
78 changed files with 162 additions and 82 deletions

View File

@@ -1,3 +1,5 @@
## 19.6.8-3 (06-03-2026)
- Minor bugs fixed
## 19.6.8-2 (2026-03-07)
- Fix argument quoting in cloudcmd launch command

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-2"
version: "19.6.8-4"

View File

@@ -18,7 +18,9 @@ fi
# Clean symlinks
find /config -maxdepth 1 -type l -delete
find /homeassistant/addons_config -maxdepth 1 -type l -delete
if [ -d /homeassistant/addons_config ]; then
find /homeassistant/addons_config -maxdepth 1 -type l -delete
fi
# Remove erroneous folders
if [ -d /homeassistant ]; then
@@ -30,10 +32,14 @@ if [ -d /homeassistant ]; then
fi
fi
# Create symlinks
ln -s /homeassistant/addons_config /config
ln -s /homeassistant/addons_autoscripts /config
find /addon_configs/ -maxdepth 1 -mindepth 1 -type d -not -name "*cloudcommander*" -exec ln -s {} /config/addons_config/ \;
# Create symlinks with legacy folders
if [ -d /homeassistant/addons_config ]; then
ln -s /homeassistant/addons_config /config
find /addon_configs/ -maxdepth 1 -mindepth 1 -type d -not -name "*cloudcommander*" -exec ln -s {} /config/addons_config/ \;
fi
if [ -d /homeassistant/addons_autoscripts ]; then
ln -s /homeassistant/addons_autoscripts /config
fi
#################
# NGINX SETTING #