From ad3eb578fbd62afaba6f28f7b7c58bda40628ed9 Mon Sep 17 00:00:00 2001 From: Lubos Kocman Date: Wed, 3 Aug 2016 10:10:39 +0200 Subject: [PATCH] add arches to module-tag (not just build-tag) * this fixes issue that pungi can't discover arches for compsing module from tag Signed-off-by: Lubos Kocman --- rida/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rida/builder.py b/rida/builder.py index 9ade087b..75e43378 100644 --- a/rida/builder.py +++ b/rida/builder.py @@ -350,7 +350,7 @@ chmod 644 %buildroot/%_rpmconfigdir/macros.d/macros.modules """ log.info("%r preparing buildroot." % self) self.module_tag = self._koji_create_tag( - self.tag_name, perm="admin") # returns tag obj + self.tag_name, self.arches, perm="admin") # the main tag needs arches so pungi can dump it self.module_build_tag = self._koji_create_tag( self.tag_name + "-build", self.arches, perm="admin")