summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Micouin-Jorda <gmicouin@netcourrier.com>2023-11-09 15:13:17 +0100
committerLUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-11-15 13:06:23 +0000
commitc984e8d4f6c63af9781b679efd7aa734ad36f47f (patch)
tree07d1ef17e5abd62369abdf6abd158de6ad7eaf1b
parent6d821124e0f7fa2b6d9a5154851354cf4af70d9d (diff)
downloadgit-repo-c984e8d4f6c63af9781b679efd7aa734ad36f47f.tar.gz
manifest_xml: support nested submanifests
Change-Id: I58f91c6b0db631bb7f55164f41d11d3a349ac94f Signed-off-by: Guillaume Micouin-Jorda <gmicouin@netcourrier.com> Signed-off-by: Hadamik Stephan <Stephan.Hadamik@continental-corporation.com> Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/392020 Reviewed-by: Ben PUJOL <pujolbe@gmail.com> Reviewed-by: LaMont Jones <lamontjones@google.com> Tested-by: Roberto Prado <roberto.prado.c@gmail.com> Commit-Queue: Roberto Prado <roberto.prado.c@gmail.com> Tested-by: LaMont Jones <lamontjones@google.com> Reviewed-by: Roberto Prado <roberto.prado.c@gmail.com>
-rw-r--r--manifest_xml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py
index b27bf805..edbebaa3 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -305,7 +305,7 @@ class _XmlSubmanifest:
305 parent.repodir, 305 parent.repodir,
306 linkFile, 306 linkFile,
307 parent_groups=",".join(groups) or "", 307 parent_groups=",".join(groups) or "",
308 submanifest_path=self.relpath, 308 submanifest_path=os.path.join(parent.path_prefix, self.relpath),
309 outer_client=outer_client, 309 outer_client=outer_client,
310 default_groups=default_groups, 310 default_groups=default_groups,
311 ) 311 )