From ca9b1362b3f23adb45550b9d0dfe44d7df81861e Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Wed, 24 Oct 2018 14:09:17 +0300 Subject: [PATCH] build_manifest.py: Make sure the remote always ends with a slash that's how `git-update` in `gst-build` expects it to be --- gitlab/build_manifest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gitlab/build_manifest.py b/gitlab/build_manifest.py index 9be22fc..7ace070 100755 --- a/gitlab/build_manifest.py +++ b/gitlab/build_manifest.py @@ -133,6 +133,9 @@ if __name__ == "__main__": projects: str = '' project_template: str = " \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=' ') -- 2.7.4