run chktex when request has check:true

This commit is contained in:
Brian Gough
2016-07-26 16:22:38 +01:00
parent 6524439699
commit 14837a57ec
4 changed files with 13 additions and 4 deletions

View File

@@ -27,6 +27,10 @@ module.exports = CommandRunner =
err = new Error("terminated")
err.terminated = true
return callback(err)
else if code
err = new Error("exit")
err.code = code
return callback(err)
else
callback()