From 23faf4f760f841c129fc48c0c9cd022d59e60ddd Mon Sep 17 00:00:00 2001 From: Stephen Corya Date: Wed, 20 Mar 2024 16:44:45 -0400 Subject: [PATCH] fix env var name --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index cb44c43..8807483 100644 --- a/index.js +++ b/index.js @@ -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]); } }