From ec3a7d4523824a5591566eb13b0ff4c6d8396980 Mon Sep 17 00:00:00 2001 From: augustin64 Date: Tue, 16 Jan 2024 19:46:34 +0100 Subject: [PATCH] make.sh: wrong path for thumbnails --- make.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make.sh b/make.sh index 1da7302..db6dd56 100755 --- a/make.sh +++ b/make.sh @@ -7,8 +7,8 @@ init () { mkdir -p "$INSTANCE_PATH/partitions" mkdir -p "$INSTANCE_PATH/attachments" mkdir -p "$INSTANCE_PATH/search-partitions" - mkdir -p "$INSTANCE_PATH/static/thumbnails" - mkdir -p "$INSTANCE_PATH/static/search-thumbnails" + mkdir -p "partitioncloud/static/thumbnails" + mkdir -p "partitioncloud/static/search-thumbnails" if ! test -f "$INSTANCE_PATH/config.py"; then echo "SECRET_KEY=$(python3 -c 'import secrets; print(secrets.token_hex())')" > "$INSTANCE_PATH/config.py"