mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
build_manifest: Add the "path" attribute to projects
When the local path and the name are different, both have to be specified, it is now required since we add the '.git' to the name.
This commit is contained in:
parent
10ffa6f1af
commit
2414895a53
1 changed files with 2 additions and 2 deletions
|
@ -278,11 +278,11 @@ if __name__ == "__main__":
|
|||
sys.exit(0)
|
||||
|
||||
projects: str = ''
|
||||
project_template: str = " <project name=\"{}.git\" remote=\"{}\" revision=\"{}\" />\n"
|
||||
project_template: str = " <project path=\"%(name)s\" name=\"%(name)s.git\" remote=\"%(remote)s\" revision=\"%(revision)s\" />\n"
|
||||
for module in GSTREAMER_MODULES:
|
||||
print(f"Checking {module}:", end=' ')
|
||||
remote, revision = find_repository_sha(module, current_branch)
|
||||
projects += project_template.format(module[0], remote, revision)
|
||||
projects += project_template % {'name': module[0], 'remote': remote, 'revision': revision}
|
||||
|
||||
with open(options.output, mode='w') as manifest:
|
||||
print(MANIFEST_TEMPLATE.format(user_remote_url, projects), file=manifest)
|
||||
|
|
Loading…
Reference in a new issue