Merge branch 'master' into dev

This commit is contained in:
Nick O'Leary
2019-08-06 16:10:33 +01:00
20 changed files with 42 additions and 39 deletions

View File

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