From 57aa782fd1397083ea2c859d6b26ccde4aae48ff Mon Sep 17 00:00:00 2001 From: alexbelgium Date: Tue, 27 May 2025 10:11:59 +0200 Subject: [PATCH] Fix breaking characters --- calibre_web/config.json | 4 ++-- calibre_web/rootfs/etc/cont-init.d/00-data_location.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/calibre_web/config.json b/calibre_web/config.json index 8b21b84c6..67bb23fe1 100644 --- a/calibre_web/config.json +++ b/calibre_web/config.json @@ -82,7 +82,7 @@ "ingress": true, "init": false, "map": [ - "addon_config:rw", + "addon_config:rw", "all_addon_configs:rw", "homeassistant_config:rw", "media:rw", @@ -123,6 +123,6 @@ "slug": "calibre-web", "udev": true, "url": "https://github.com/alexbelgium/hassio-addons/tree/master/calibre_web", - "version": "0.6.24-8", + "version": "0.6.24-9", "video": true } diff --git a/calibre_web/rootfs/etc/cont-init.d/00-data_location.sh b/calibre_web/rootfs/etc/cont-init.d/00-data_location.sh index d42349ad8..48453611f 100755 --- a/calibre_web/rootfs/etc/cont-init.d/00-data_location.sh +++ b/calibre_web/rootfs/etc/cont-init.d/00-data_location.sh @@ -58,8 +58,8 @@ chown "$PUID":"$PGID" "$LOCATION" if [ -d /homeassistant/addons_config/calibre-web ]; then if [ "$(ls -A /homeassistant/addons_config/calibre-web)" ]; then -     echo "Moving database to new location /config" -     cp -rf /homeassistant/addons_config/calibre-web/* "$LOCATION"/ + echo "Moving database to new location /config" + cp -rf /homeassistant/addons_config/calibre-web/* "$LOCATION"/ fi -    rm -r /homeassistant/addons_config/calibre-web + rm -r /homeassistant/addons_config/calibre-web fi