From b3d6a1fe539da87ba1de1ac3bb201d0ba06258ed Mon Sep 17 00:00:00 2001 From: 4NK Dev Date: Sun, 21 Sep 2025 22:11:35 +0000 Subject: [PATCH] ci: docker_tag=ext - Update config for deployment --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);