Fix ssh-keygen error handling

This commit is contained in:
Nick O'Leary
2019-08-06 17:12:40 +01:00
parent ffd10e656e
commit defa9a2270

View File

@@ -51,7 +51,7 @@ function runSshKeygenCommand(args,cwd,env) {
resolve(stdout);
}
});
child.error('error', function(err) {
child.on('error', function(err) {
if (/ENOENT/.test(err.toString())) {
err.code = "command_not_found";
}