This commit is contained in:
Alexandre
2023-07-22 10:23:42 +02:00
parent ad8aaefc0c
commit ff575ddd53
2 changed files with 2 additions and 2 deletions

View File

@@ -124,6 +124,6 @@
"slug": "nextcloud_ocr",
"uart": true,
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/nextcloud",
"version": "27.0.1-5",
"version": "27.0.1-6",
"webui": "https://[HOST]:[PORT:443]"
}

View File

@@ -21,7 +21,7 @@ rootuser='root'
printf "Creating possible missing Directories\n"
for folder in "$ocpath"/data "$ocpath"/assets "$ocpath"/updater "$ocpath"/apps "$ocpath"/assets "$ocpath"/config "$ocpath"/data "$ocpath"/themes /data/config/nextcloud/config /data/config/nextcloud/data /ssl/nextcloud/keys; do
if [ ! -f "$folder" ]; then
if [ ! -d "$folder" ]; then
echo "... $folder"
mkdir -p "$folder" || true
fi