aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutils/seeded-builds/manifest-union4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/seeded-builds/manifest-union b/utils/seeded-builds/manifest-union
index c27244c..4a2392a 100755
--- a/utils/seeded-builds/manifest-union
+++ b/utils/seeded-builds/manifest-union
@@ -51,7 +51,9 @@ class Manifest:
revision = project_node.getAttribute("revision")
path = project_node.getAttribute("path")
# key = (remote, name, revision, path)
- key = (remote, name)
+# key = (remote, name)
+ # Turned out can't have dup project names per manifest, not per remote
+ key = name
if key in self.project_map:
return False
self.project_map[key] = project_node