Fix build config

This commit is contained in:
alesapin 2021-11-12 16:43:13 +03:00
parent 78c44976a4
commit aae000372f

View File

@ -730,7 +730,7 @@ def build_config_to_string(build_config):
build_config['sanitizer'] if build_config['sanitizer'] else "none",
build_config['bundled'],
build_config['splitted'],
'tidy' if 'tidy' in build_config['tidy'] and build_config['tidy'] == 'enable' else 'notidy',
'with_coverage' if 'with_coverage' in build_config['with_coverage'] and build_config['with_coverage'] else 'without_coverage',
'tidy' if 'tidy' in build_config and build_config['tidy'] == 'enable' else 'notidy',
'with_coverage' if 'with_coverage' in build_config and build_config['with_coverage'] else 'without_coverage',
build_config['package_type'],
])