diff --git a/src/config.rs b/src/config.rs index b08f786..b00b8cd 100644 --- a/src/config.rs +++ b/src/config.rs @@ -62,7 +62,7 @@ impl Config { if let Some((k, v)) = l.split_once('=') { let key = k.trim().to_owned(); let value = v.trim().trim_matches('\"').to_owned(); - + // Only insert if not already set by environment variables if !file_content.contains_key(&key) { file_content.insert(key, value);