who loves a typo?

This commit is contained in:
Tristan 2025-05-10 14:14:17 -04:00
parent 0dde15c20c
commit b07f844c72

View File

@ -157,7 +157,7 @@ def main():
logging.info("Successfully fetched updates from local server.")
logging.info(f"Pushing mirror of '{repo_name}' to GitHub remote: '{github_repo_url}'")
run_command(["git", "config", "--global", "--add", "safe.directory", local_mirror_clone_path], cwd=local_mirror_clone_path)
run_command(["git", "config", "--global", "--add", "safe.directory"], cwd=local_mirror_clone_path)
run_command(["git", "push", "--mirror", "github"], cwd=local_mirror_clone_path)
logging.info(f"Successfully mirrored '{repo_name}' to GitHub.")