Update environment variables in current process (#916)
This commit is contained in:
Родитель
e4fe92b501
Коммит
bb65b72bd3
|
@ -549,6 +549,16 @@ export class CordovaProjectHelper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (envVars) {
|
||||||
|
// eslint-disable-next-line no-restricted-syntax
|
||||||
|
for (const key in envVars) {
|
||||||
|
// Update process env if the custom key is not existing
|
||||||
|
if (!process.env.hasOwnProperty(key) || process.env[key] != envVars[key]) {
|
||||||
|
process.env[key] = envVars[key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return env;
|
return env;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче