Variants file in config can contain path
rcm-metadata configs contain definition of variants file. It can be in form of SCM or file path. Before the fix, only variants file's basename was consireded. Now the path can be written. Example: variants_file = "comps/variants-rcmtools-2.0-rhel-8.xml" JIRA: RHELCMP-8705 Signed-off-by: Ondrej Nosek <onosek@redhat.com>
This commit is contained in:
parent
d55770898c
commit
bebbefe46e
@ -408,7 +408,7 @@ class Compose(kobo.log.LoggingBase):
|
||||
)
|
||||
else:
|
||||
file_name = os.path.basename(scm_dict)
|
||||
scm_dict = os.path.join(self.config_dir, os.path.basename(scm_dict))
|
||||
scm_dict = os.path.join(self.config_dir, scm_dict)
|
||||
|
||||
self.log_debug("Writing variants file: %s", variants_file)
|
||||
tmp_dir = self.mkdtemp(prefix="variants_file_")
|
||||
|
Loading…
Reference in New Issue
Block a user