From cf57484ac53a5ebce06c431baa56f55f421f6a28 Mon Sep 17 00:00:00 2001 From: openhabian Date: Wed, 10 Jul 2024 10:13:48 +0200 Subject: [PATCH] fix creating /etc/openhab/scripts durch unzipping der default conf Signed-off-by: openhabian --- functions/storm.house.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/storm.house.bash b/functions/storm.house.bash index f8437cf76..886282571 100644 --- a/functions/storm.house.bash +++ b/functions/storm.house.bash @@ -539,7 +539,7 @@ upgrade_ems() { if ! cond_redirect wget -nv -O "$temp" "$updateonly"; then echo "FAILED (download EMS patch)"; rm -f "$temp"; return 1; fi ( cd /etc/openhab || return 1 ln -sf . conf - unzip -o "$temp" conf/things\* conf/items\* conf/rules\* conf/transform\* conf/UI\* conf/html\* scripts/\* + unzip -o "$temp" conf/things\* conf/items\* conf/rules\* conf/transform\* conf/UI\* conf/html\* scripts\* rm -f conf ) fi