Skip to content

Commit

Permalink
feat: showing entire val in undefined instead of just $env. for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
Varun0157 committed Jun 10, 2024
1 parent 2ecc883 commit ae7918f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/variableParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function replaceEnvironmentVariables(vars: Variables): {
const envVarName = val.slice(PREFIX.length);
if (envVarName in process.env) return process.env[envVarName];

undefinedVars.push(envVarName);
undefinedVars.push(val);
return val;
};

Expand Down

0 comments on commit ae7918f

Please sign in to comment.