mirror of
https://github.com/esphome/esphome.git
synced 2024-12-18 15:57:58 +01:00
Fix when package url has no branch/ref (#2683)
This commit is contained in:
parent
add484a2ea
commit
a509f6ccd2
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user