Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Allow empty stderr (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
emaballarin authored and Arcanemagus committed Aug 26, 2017
1 parent 4bb29ce commit 10c8173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/init.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports =
filePath
]

return helpers.exec(command, parameters, {stream: 'stderr'}).then (output) ->
return helpers.exec(command, parameters, {stream: 'stderr', allowEmptyStderr: true}).then (output) ->
errors = for message in helpers.parse(output, regex, {filePath: filePath})
message.type = 'error'
message
Expand Down

0 comments on commit 10c8173

Please sign in to comment.