Skip to content

Commit f1936ff

Browse files
committed
addressed comments
1 parent 258032e commit f1936ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commands/utils/set_args.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,8 @@ function sync_args_from_cmd(args) {
407407
envFile = fs.readFileSync(envFilePath, {encoding: 'utf8'})
408408
parsedEnv = dotenv.parse(envFile)
409409
for (index in dot_env_vars) {
410-
envKey = dot_env_vars[index]
411-
envValue = parsedEnv[envKey]
410+
let envKey = dot_env_vars[index]
411+
let envValue = parsedEnv[envKey]
412412
envs[envKey] = envValue
413413
}
414414
} catch (err) {

0 commit comments

Comments
 (0)