We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8795cd7 commit 053a2e5Copy full SHA for 053a2e5
index.js
@@ -35,7 +35,7 @@ var printIssue = function(fileName, lineNum, matchedString){
35
36
var findFixmes = function(file){
37
// Prepare the grep string for execution (uses BusyBox grep)
38
- var grepString = "grep -inHwoE " + fixmeStrings + " \"" + file + "\"";
+ var grepString = ["grep -inHwoE", fixmeStrings, '"' + file + '"'].join(" ");
39
40
// Execute grep with the FIXME patterns
41
exec(grepString, function (error, stdout, stderr) {
0 commit comments