Skip to content

Commit

Permalink
src/main/builder.js edited online with Bitbucket
Browse files Browse the repository at this point in the history
  • Loading branch information
slavaleleka authored and jellizaveta committed Nov 13, 2023
1 parent c512b87 commit 4e6f433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ module.exports = (function () {
.map((line) => {
// Filter out null and empty strings
if (!line || line.trim() === '') {
return (RuleMasks.MASK_COMMENT);
return RuleMasks.MASK_COMMENT;
}
// Check if the line has a comment marker '#'.
if (line.startsWith(RuleMasks.MASK_HOST_FILE_COMMENT)) {
Expand Down

0 comments on commit 4e6f433

Please sign in to comment.