Fix dependency cid

This commit is contained in:
2026-06-28 23:00:10 -05:00
parent 230b982d20
commit 19a7fb9312
+1 -1
View File
@@ -34,7 +34,7 @@ class Dependency(yaml.YAMLError):
path = parsed.path.strip("/")
if path.endswith(".git"):
path = path[:-4]
return path + str(self.branch)
return path + "@" + str(self.branch)
@classmethod
def to_dict(cls, data: Self) -> dict: