mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-28 11:55:39 +00:00
build_manifest.py: Make sure the remote always ends with a slash
that's how `git-update` in `gst-build` expects it to be
This commit is contained in:
parent
dc275a204e
commit
ca9b1362b3
1 changed files with 3 additions and 0 deletions
|
@ -133,6 +133,9 @@ if __name__ == "__main__":
|
|||
projects: str = ''
|
||||
project_template: str = " <project name=\"{}\" remote=\"{}\" revision=\"{}\" />\n"
|
||||
user_remote: str = os.path.dirname(os.environ['CI_PROJECT_URL'])
|
||||
if not user_remote.endswith('/'):
|
||||
user_remote += '/'
|
||||
|
||||
for module in GSTREAMER_MODULES:
|
||||
print(f"Checking {module}:", end=' ')
|
||||
|
||||
|
|
Loading…
Reference in a new issue