Fix default env processing typescript error

This commit is contained in:
Rory Powell 2022-11-29 22:11:44 +00:00
parent 440ce1d61b
commit 98084a9a31
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ for (let [key, value] of Object.entries(environment)) {
// handle the edge case of "0" to disable an environment variable // handle the edge case of "0" to disable an environment variable
if (value === "0") { if (value === "0") {
// @ts-ignore // @ts-ignore
env[key] = 0 environment[key] = 0
} }
} }