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

Commit

Permalink
Merge pull request #6 from AndrewBastin/master
Browse files Browse the repository at this point in the history
Fixed moonc exited without error code 0 error
  • Loading branch information
HybridEidolon authored Dec 5, 2016
2 parents 412f71e + 20a2eb3 commit f808965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/linter-moonscript.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class LinterMoonscript
stderr = (err) ->
output.push err
exit = (code) =>
if code is 0
if code is 0 or 1
messages = @parse options.cwd, output.join ''
resolve messages
else
Expand Down

0 comments on commit f808965

Please sign in to comment.