From 484db31c33dfe63ae89f9cf95c550babcc422d31 Mon Sep 17 00:00:00 2001 From: Vermintide Analytics Date: Fri, 3 Nov 2023 16:29:00 -0400 Subject: [PATCH] Fix invalid bundle csv red herrings --- scripts/tools/builder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tools/builder.js b/scripts/tools/builder.js index a23c921..40cedf0 100644 --- a/scripts/tools/builder.js +++ b/scripts/tools/builder.js @@ -211,7 +211,7 @@ function _outputFailedBundles(data, modName) { bundles.splice(0, 1); for (let line of bundles) { - let bundle = line.split(', '); + let bundle = line.split(','); // Each line has to be bundle, "resource", "type", "bytes" if (bundle.length < 4) {