From d0160811dd29928252884b9ec72334845ebd238e Mon Sep 17 00:00:00 2001 From: Yeastplume Date: Tue, 10 Oct 2017 18:28:33 +0100 Subject: [PATCH] Not exploding when grin.toml file isn't found (#164) --- config/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/src/config.rs b/config/src/config.rs index 9fa8c228c..aa127a4e0 100644 --- a/config/src/config.rs +++ b/config/src/config.rs @@ -96,7 +96,7 @@ impl GlobalConfig { if let Some(fp) = file_path { return_value.config_file_path = Some(PathBuf::from(&fp)); } else { - return_value.derive_config_location().unwrap(); + let _result=return_value.derive_config_location(); } // No attempt at a config file, just return defaults