Skip to content

Commit

Permalink
Improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
orishoshan committed Oct 11, 2023
1 parent 9315f80 commit 04e4641
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/verify-includes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ module.exports = function (context, options) {
const child = spawnSync('grep',
// -l - only print filenames
// -R - recursive
['-lR',
'include file not found',
['-wRoE',
'include file not found: (.*) \-\-',
outDir], {
encoding: 'utf-8',
stdio: [process.stdin, 'pipe', process.stderr]
Expand Down

0 comments on commit 04e4641

Please sign in to comment.