@varius.io/framework 13.12.0 → 13.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/vatom-vault-env.mjs +2 -2
- package/package.json +1 -1
package/bin/vatom-vault-env.mjs
CHANGED
|
@@ -118,12 +118,12 @@ async function main() {
|
|
|
118
118
|
const oldRejectUnauthorized = process.env.NODE_TLS_REJECT_UNAUTHORIZED;
|
|
119
119
|
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
|
|
120
120
|
|
|
121
|
-
const
|
|
121
|
+
const resolvedEnv = await resolveEnv();
|
|
122
122
|
|
|
123
123
|
// reset self-signed cert permission, for the child process
|
|
124
124
|
process.env.NODE_TLS_REJECT_UNAUTHORIZED = oldRejectUnauthorized;
|
|
125
125
|
|
|
126
|
-
process.env = { ...process.env, ...
|
|
126
|
+
process.env = { ...process.env, ...resolvedEnv };
|
|
127
127
|
|
|
128
128
|
for (const key of Object.keys(process.env)) {
|
|
129
129
|
if (key.startsWith("VAULT_ENV")) {
|