Fix where the tool is being deployed
- ID
400571d- date
2025-02-01 21:15:57+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
fa8ada8- message
Fix where the tool is being deployed- changed files
1 file, 2 additions, 2 deletions
Changed files
deploy.py (1205 → 1211)
diff --git a/deploy.py b/deploy.py
index f24abe2..5670583 100755
--- a/deploy.py
+++ b/deploy.py
@@ -32,13 +32,13 @@ if __name__ == "__main__":
[
"ssh",
"alexwlchan@alexwlchan.net",
- "mkdir -p repos/alexwlchan.net/_site/tools/add-cover-to-ao3-epubs",
+ "mkdir -p repos/alexwlchan.net/_site/my-tools/add-cover-to-ao3-epubs",
]
)
subprocess.check_call(
[
"scp",
str(out_dir / "index.html"),
- "alexwlchan@alexwlchan.net:repos/alexwlchan.net/_site/tools/add-cover-to-ao3-epubs/index.html",
+ "alexwlchan@alexwlchan.net:repos/alexwlchan.net/_site/my-tools/add-cover-to-ao3-epubs/index.html",
]
)