From 469cb673c1735e9a5f7ea3612fd4cd95da30dbbb Mon Sep 17 00:00:00 2001 From: Baron Huang <44422867+huangbaron2@users.noreply.github.com> Date: Fri, 13 Mar 2026 14:12:10 +0000 Subject: [PATCH] Updated source-configs.js to allow for empty string to be set from ENV variables, same thing as PR#378 but for an overlooked line --- source-configs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source-configs.js b/source-configs.js index eb30f8a..8b87df8 100644 --- a/source-configs.js +++ b/source-configs.js @@ -223,7 +223,7 @@ function checkConfig (path, configObject, commandLineArgs, sources) { break } } else { - if (process.env[configObject.envVar]) { + if (Object.hasOwn(process.env, configObject.envVar)) { value = process.env[configObject.envVar] break }