diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2025-01-15 14:13:47 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2025-01-15 14:13:47 +0200 |
commit | 2baa14d5e07095a5ce2d82f60806e34c20c4aa71 (patch) | |
tree | 61e1c9eb9800e07d531e971f42fd225502c0712f /mod/mod-build-configs.cxx | |
parent | 6ea1ad3b71eddb051c72fcfc335b84f00bcfac5f (diff) |
Fix CI module initialization compiled with unloaded tenant service support
Diffstat (limited to 'mod/mod-build-configs.cxx')
-rw-r--r-- | mod/mod-build-configs.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/mod-build-configs.cxx b/mod/mod-build-configs.cxx index ce79edb..2754f95 100644 --- a/mod/mod-build-configs.cxx +++ b/mod/mod-build-configs.cxx @@ -34,10 +34,12 @@ init (scanner& s) s, unknown_mode::fail, unknown_mode::fail); if (options_->build_config_specified ()) + { build_config_module::init (*options_); - if (options_->root ().empty ()) - options_->root (dir_path ("/")); + if (options_->root ().empty ()) + options_->root (dir_path ("/")); + } } bool brep::build_configs:: |