From 27c649c1410f1d145bebf62843d351f4648785e7 Mon Sep 17 00:00:00 2001 From: Nathan Blackham Date: Sat, 5 Oct 2024 01:06:50 -0600 Subject: [PATCH] add release version to extrasisotemplate mock config --- iso/empanadas/empanadas/util/iso_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iso/empanadas/empanadas/util/iso_utils.py b/iso/empanadas/empanadas/util/iso_utils.py index d52ba44..eac5078 100644 --- a/iso/empanadas/empanadas/util/iso_utils.py +++ b/iso/empanadas/empanadas/util/iso_utils.py @@ -858,6 +858,7 @@ class IsoBuild: mock_iso_template_output = mock_iso_template.render( arch=self.current_arch, major=self.major_version, + releasever=self.release, fullname=self.fullname, shortname=self.shortname, required_pkgs=required_pkgs, @@ -871,6 +872,7 @@ class IsoBuild: mock_sh_template_output = mock_sh_template.render( arch=self.current_arch, major=self.major_version, + releasever=self.release, isolation=self.mock_isolation, builddir=self.mock_work_root, shortname=self.shortname,