From 6ad518d8465b067fcc6733f0c9f6a50ed306d134 Mon Sep 17 00:00:00 2001 From: Elsa Date: Wed, 20 Mar 2024 12:59:29 -0400 Subject: [PATCH] Ignore .ds_store --- data-requirements/fqm-e-dr.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-requirements/fqm-e-dr.ts b/data-requirements/fqm-e-dr.ts index e7daf328..2b2e0f1d 100644 --- a/data-requirements/fqm-e-dr.ts +++ b/data-requirements/fqm-e-dr.ts @@ -25,7 +25,7 @@ async function main() { // get all of the file names (short and fullPath) from the jan-2024-connectathon directory const allBundles = fs .readdirSync(JAN_2024_CONNECTATHON_BASE_PATH) - .filter(f => f !== '.gitkeep') + .filter(f => !f.startsWith('.')) .map(f => ({ shortName: f.split('v')[0], fullPath: path.join(JAN_2024_CONNECTATHON_BASE_PATH, f)