lint config.ts
This commit is contained in:
parent
1c2bb90ac5
commit
e045652c80
1 changed files with 4 additions and 4 deletions
|
@ -387,7 +387,7 @@ function applyEnvOverrides(config: Source) {
|
|||
name = `MK_CONFIG_${name}${_step2name(lastStep)}`;
|
||||
|
||||
const val = process.env[name];
|
||||
if (val != null && val != undefined) {
|
||||
if (val !== null && val !== undefined) {
|
||||
_assign(path, lastStep, val);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue