Fix when package url has no branch/ref (#2683)

This commit is contained in:
Jesse Hills 2021-11-09 17:14:08 +13:00 committed by GitHub
parent add484a2ea
commit a509f6ccd2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ def clone_or_update(
) -> Path:
key = f"{url}@{ref}"
repo_dir = _compute_destination_path(key, domain)
fetch_pr_branch = ref.startswith("pull/")
fetch_pr_branch = ref is not None and ref.startswith("pull/")
if not repo_dir.is_dir():
_LOGGER.info("Cloning %s", key)
_LOGGER.debug("Location: %s", repo_dir)