From 06c4f9e1cca33a51b5396de2d1d975648e9f2ce4 Mon Sep 17 00:00:00 2001 From: Andrew Chant Date: Tue, 21 Jul 2026 10:07:14 -0700 Subject: [PATCH] git_superproject: don't filter rewritten manifest When creating the superproject manifest, take all groups from the original manifest, including notdefault. Using the ManifestGroupsStr will inadvertantly filter out notdefault projects from the superproject manifest. Change-Id: If3daf41e9a6572348de9182fe8679b90d3cec833 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/610021 Commit-Queue: Andrew Chant Tested-by: Andrew Chant Reviewed-by: Gavin Mak --- git_superproject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_superproject.py b/git_superproject.py index 27bc10e10..665b596ec 100644 --- a/git_superproject.py +++ b/git_superproject.py @@ -473,7 +473,7 @@ class Superproject: ) return None manifest_str = self._manifest.ToXml( - filter_groups=self._manifest.GetManifestGroupsStr(), + filter_groups="all", omit_local=True, ).toxml() manifest_path = self._manifest_path