From e95e9a7350ba7be481f4fdc12e82d3f85d4d6559 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Fri, 6 Dec 2024 00:36:44 -0600 Subject: [PATCH] Update features-to-json.js to use a hardcoded path for features file Signed-off-by: Lee Calcote --- .github/build/features-to-json.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/build/features-to-json.js b/.github/build/features-to-json.js index 8a5e4469ac6b..5c8279f57e19 100755 --- a/.github/build/features-to-json.js +++ b/.github/build/features-to-json.js @@ -63,8 +63,8 @@ async function processCSV() { }).filter(Boolean); // Read existing JSON data - const featuresFile = process.env.FEATURES_FILE; - //const featuresFile = "src/sections/Pricing/feature_data.json"; + // const featuresFile = process.env.FEATURES_FILE; + const featuresFile = "src/sections/Pricing/feature_data.json"; let existingData = []; if (await fs.access(featuresFile).then(() => true, () => false)) { existingData = JSON.parse(await fs.readFile(featuresFile, "utf8"));