Skip to content

Commit

Permalink
remove use of --no-checkout as module info are not parsed
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienbeau committed Sep 19, 2024
1 parent ca5443a commit 44c7834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_repo(org, repo, version):
print(f"Cloning {org}/{repo}@{version}")
org_path = CLONE_DIRECTORY / org
path.mkdir(exist_ok=True, parents=True)
run(org_path, "git", "clone", "-n", f"https://github.com/{org}/{repo}", "-b", version)
run(org_path, "git", "clone", f"https://github.com/{org}/{repo}", "-b", version)
return path


Expand Down

0 comments on commit 44c7834

Please sign in to comment.