Skip to content

Commit

Permalink
remove empty quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron-dunn-sublime committed Dec 27, 2023
1 parent 9560ddb commit 93bc6e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rule-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ jobs:
match = match.replaceAll("#", "")
let emls = match.split(seperatorRegex)
console.log("Split EMLs: " + JSON.stringify(emls))
allEMLsToSkip = allEMLsToSkip.concat(emls)
allEMLsToSkip = allEMLsToSkip.concat(emls.filter((s) => s !== ""))
});
}
}
Expand Down

0 comments on commit 93bc6e8

Please sign in to comment.