From a0f3be42214d0cc6e963c1dda61b609d52d05e21 Mon Sep 17 00:00:00 2001 From: Stax124 Date: Tue, 24 Oct 2023 16:41:51 +0200 Subject: [PATCH] Fix autofill and themes inside docker --- .dockerignore | 4 ++++ main.py | 1 + 2 files changed, 5 insertions(+) diff --git a/.dockerignore b/.dockerignore index 5681890ab..993ab8a57 100644 --- a/.dockerignore +++ b/.dockerignore @@ -10,6 +10,10 @@ pyproject.toml # User generated files /converted /data +!/data/themes/dark.json +!/data/themes/dark_flat.json +!/data/themes/light.json +!/data/themes/light_flat.json /engine /onnx /traced_unet diff --git a/main.py b/main.py index 2e752c60b..67cd003e0 100644 --- a/main.py +++ b/main.py @@ -96,6 +96,7 @@ "lycoris", "logs", "themes", + "autofill", ]: Path(f"data/{directory}").mkdir(exist_ok=True, parents=True)