We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 258032e commit f1936ffCopy full SHA for f1936ff
commands/utils/set_args.js
@@ -407,8 +407,8 @@ function sync_args_from_cmd(args) {
407
envFile = fs.readFileSync(envFilePath, {encoding: 'utf8'})
408
parsedEnv = dotenv.parse(envFile)
409
for (index in dot_env_vars) {
410
- envKey = dot_env_vars[index]
411
- envValue = parsedEnv[envKey]
+ let envKey = dot_env_vars[index]
+ let envValue = parsedEnv[envKey]
412
envs[envKey] = envValue
413
}
414
} catch (err) {
0 commit comments