From aeaaf08a79803a1b8cfbcd8464fb4675f2db4f79 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 8 Jun 2025 15:56:20 +0200 Subject: [PATCH] output --- render.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/render.py b/render.py index 6c10048..96221e8 100755 --- a/render.py +++ b/render.py @@ -11,9 +11,8 @@ if __name__ == "__main__": root = Path(__file__).resolve().parent root_input = root / "in" root_output = root / "out" - web = root_output / "web" fs.wipe(root_output) - fs.make_directory(web) + fs.make_directory(root_output) run( "rsync", "--archive", @@ -21,5 +20,5 @@ if __name__ == "__main__": "--progress", "--verbose", f"{root_input}{sep}", - f"{web}{sep}", + f"{root_output}{sep}", )