From ab3189781f0b0e97c23c7719a5fdbccbf0c4db39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=B6ppner?= <jonas.hoeppner@garz-fricke.com> Date: Mon, 4 Apr 2022 11:58:05 +0200 Subject: [PATCH] CI: integrate_into_manifest: Fix integration for recipes in SRCREV file --- integrate_into_manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrate_into_manifest.py b/integrate_into_manifest.py index 7ef8ed9d..223c5ffa 100755 --- a/integrate_into_manifest.py +++ b/integrate_into_manifest.py @@ -163,7 +163,7 @@ def integrate_into_manifest( "no recipe name is specified" % project.path ) with open(srcrev_filepath.as_posix(), "w", encoding="utf8") as fp: - fp.write(new_manifest) + fp.write(new_srcrev) manifest_repo.index.add([srcrev_file]) # Make an API request to create the gitlab.user object -- GitLab