Skip to content

Commit

Permalink
Merge pull request #14 from Vermintide-Analytics/master
Browse files Browse the repository at this point in the history
Fix invalid bundle csv red herrings
  • Loading branch information
dalokraff authored Nov 3, 2023
2 parents 0bbcf30 + 484db31 commit 531cca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tools/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 531cca0

Please sign in to comment.