Skip to content

Commit

Permalink
Merge pull request #259 from adafruit/url-fix
Browse files Browse the repository at this point in the history
Fixed url used for cloning
  • Loading branch information
kattni committed Mar 22, 2022
2 parents 8ce3914 + 7375fd8 commit 63526b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adabot/lib/circuitpython_library_validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -1218,7 +1218,7 @@ def validate_passes_linting(self, repo):
repo_dir = pathlib.Path(tempdir) / repo["name"]
try:
if not repo_dir.exists():
git.clone("--depth=1", repo["git_url"], repo_dir)
git.clone("--depth=1", repo["clone_url"], repo_dir)
except sh.ErrorReturnCode as err:
self.output_file_data.append(
f"Failed to clone repo for linting: {repo['full_name']}\n {err.stderr}"
Expand Down

0 comments on commit 63526b0

Please sign in to comment.