add error handler on CommandRunner

This commit is contained in:
Henry Oswald 2016-05-23 14:13:55 +01:00
parent bd55e18d6b
commit d140964c5f

View file

@ -8,5 +8,8 @@ module.exports = CommandRunner =
logger.warn "timeouts and sandboxing are not enabled with CommandRunner"
proc = spawn command[0], command.slice(1), stdio: "inherit", cwd: directory
proc.on "error", (err)->
logger.err err:err, project_id:project_id, command: command, directory: directory, "error running command"
callback(err)
proc.on "close", () ->
callback()