output
All checks were successful
/ job (push) Successful in 6m49s

This commit is contained in:
Marc Beninca 2025-06-08 15:56:20 +02:00
parent 6ef9698947
commit aeaaf08a79
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -11,9 +11,8 @@ if __name__ == "__main__":
root = Path(__file__).resolve().parent root = Path(__file__).resolve().parent
root_input = root / "in" root_input = root / "in"
root_output = root / "out" root_output = root / "out"
web = root_output / "web"
fs.wipe(root_output) fs.wipe(root_output)
fs.make_directory(web) fs.make_directory(root_output)
run( run(
"rsync", "rsync",
"--archive", "--archive",
@ -21,5 +20,5 @@ if __name__ == "__main__":
"--progress", "--progress",
"--verbose", "--verbose",
f"{root_input}{sep}", f"{root_input}{sep}",
f"{web}{sep}", f"{root_output}{sep}",
) )