🐛 fix(cli): fix config file loading

- remove unnecessary config_file.required(false)
This commit is contained in:
Jeremiah Russell
2025-10-22 17:16:19 +01:00
committed by Jeremiah Russell
parent 825f2de316
commit 2af6df145f

View File

@@ -429,7 +429,7 @@ fn get_config() -> Result<(Config, ClientConfig)> {
log::info!("Loading config from {}", path.display());
let config_file = config::File::with_name(path.to_path_buf().to_str().unwrap());
let config_file = config_file.required(false);
// let config_file = config_file.required(false);
log::info!("Optional Config file {config_file:?}");
let configurations = config::Config::builder()