ssh urls were treated as local

This commit is contained in:
2026-06-28 22:56:41 -05:00
parent 58aff1b2bb
commit 230b982d20
+1 -1
View File
@@ -22,7 +22,7 @@ class Dependency(yaml.YAMLError):
def __post_init__(self) -> None:
from urllib.parse import urlparse
url = urlparse(self.remote)
self.local = not url.scheme
self.local = not self.remote.startswith("git@") and not url.scheme
@property
def cid(self) -> str: