parent
6ef9698947
commit
aeaaf08a79
1 changed files with 2 additions and 3 deletions
|
@ -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}",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue