Skip to content

Commit 9dc8d48

Browse files
authored
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.
1 parent b4d7098 commit 9dc8d48

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

builder/build_container.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def load_config(self, file: Optional[str]) -> None:
4343

4444
if self.config:
4545
self.version = self.config.get('Version', 'unknown')
46+
self.version_packages = self.config.get('Version_packages', 'unknown')
4647

4748
def _set_builder(self) -> None:
4849
""" Get the build tool form the environment. """

0 commit comments

Comments
 (0)