From 9dc8d48e2a98204e23c992c14ee70bf058121138 Mon Sep 17 00:00:00 2001 From: Oliver Pajonk Date: Wed, 17 Sep 2025 14:55:37 +0200 Subject: [PATCH] fix: read Version_packages from config file Until now, the variable Version_packages was not read from the configuration/build_config.yaml file during container build. --- builder/build_container.py | 1 + 1 file changed, 1 insertion(+) diff --git a/builder/build_container.py b/builder/build_container.py index 5bb1a85..dcd2de9 100755 --- a/builder/build_container.py +++ b/builder/build_container.py @@ -43,6 +43,7 @@ def load_config(self, file: Optional[str]) -> None: if self.config: self.version = self.config.get('Version', 'unknown') + self.version_packages = self.config.get('Version_packages', 'unknown') def _set_builder(self) -> None: """ Get the build tool form the environment. """