We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d0225d commit 800130cCopy full SHA for 800130c
1 file changed
github_scripts/get_git_sources.py
@@ -91,6 +91,9 @@ def clone_repo(repo_source: str, repo_ref: str, loc: Path) -> None:
91
if loc.exists():
92
rmtree(loc)
93
94
+ # Create a clean clone location
95
+ loc.mkdir(parents=True)
96
+
97
commands = (
98
f"git -C {loc} init",
99
f"git -C {loc} remote add origin {repo_source}"
0 commit comments