From 2d2210b6eb0bde67827278addbae85eac00fad66 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jonas=20H=C3=B6ppner?= <jonas.hoeppner@garz-fricke.com>
Date: Fri, 20 May 2022 13:57:45 +0200
Subject: [PATCH] CI: deploy-gitlab-ci: Don't stop integration when one project
 is already updated

Prior to this change the integration stop when one of the projects had
already the latest ref of gitlab-ci in to submodule.
---
 deploy_gitlab_ci.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deploy_gitlab_ci.py b/deploy_gitlab_ci.py
index 2cebf90..8365e11 100755
--- a/deploy_gitlab_ci.py
+++ b/deploy_gitlab_ci.py
@@ -285,7 +285,7 @@ def main():
         srcrev = fp.read()
     logging.debug(srcrev)
 
-    for p in args.projects:
+    for p in project_integration:
         integration = project_integration[p]
         logging.debug(
             "Update %s to %s", integration["project"].name, integration["commit"]
-- 
GitLab