Skip to content

Commit

Permalink
fix env var name
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Corya committed Mar 20, 2024
1 parent c81377c commit 23faf4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ Mustache.escape = (x) => {return x;};
const includes = [];
const excludes = [];
for (let variable of Object.keys (process.env)) {
if (variable.startsWith ('FAVRE_INCLUDE')) {
if (variable.startsWith ('CSYNC2_INCLUDE')) {
includes.push (process.env[variable]);
}
if (variable.startsWith ('FAVRE_EXCLUDE')) {
if (variable.startsWith ('CSYNC2_EXCLUDE')) {
excludes.push (process.env[variable]);
}
}
Expand Down

0 comments on commit 23faf4f

Please sign in to comment.