Fix deconz relative device path (#679)

This commit is contained in:
Pascal Vizeli
2019-08-30 12:35:56 +02:00
committed by GitHub
parent f2970e23ea
commit 31a2793e3d
3 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
# Changelog # Changelog
## 3.3
- Fix relative to absolut device lookup
## 3.2 ## 3.2
- Bump deCONZ to 2.05.67 - Bump deCONZ to 2.05.67

View File

@@ -1,6 +1,6 @@
{ {
"name": "deCONZ", "name": "deCONZ",
"version": "3.2", "version": "3.3",
"slug": "deconz", "slug": "deconz",
"description": "Control a ZigBee network with ConBee or RaspBee by Dresden Elektronik", "description": "Control a ZigBee network with ConBee or RaspBee by Dresden Elektronik",
"arch": ["amd64", "armhf"], "arch": ["amd64", "armhf"],

View File

@@ -25,7 +25,7 @@ WEBSOCKET_PORT=$(bashio::addon.port 8080)
# Lookup udev link # Lookup udev link
if [ -L "${DECONZ_DEVICE}" ]; then if [ -L "${DECONZ_DEVICE}" ]; then
DECONZ_DEVICE="$(readlink "${DECONZ_DEVICE}")" DECONZ_DEVICE="$(readlink -f "${DECONZ_DEVICE}")"
fi fi
# Load debug values # Load debug values