make 'press any key' last

This commit is contained in:
AJ ONeal 2018-06-28 03:46:54 -06:00
parent 28a66a9bd7
commit 18b2584728
1 changed files with 14 additions and 12 deletions

View File

@ -561,18 +561,20 @@ function parseConfig(err, text) {
// need just a little time to let the grants occur // need just a little time to let the grants occur
setTimeout(function () { setTimeout(function () {
utils.putConfig('list', []); utils.putConfig('list', [], function (err) {
if (err) { console.error(err); return; }
console.log("Success");
// workaround for https://github.com/nodejs/node/issues/21319 // workaround for https://github.com/nodejs/node/issues/21319
if (answers._useTty) { if (answers._useTty) {
setTimeout(function () {
console.log(); console.log();
console.log("Press any key to continue..."); console.log("Press any key to continue...");
console.log(); console.log();
setTimeout(function () {
process.exit(0); process.exit(0);
}, 2 * 1000); }, 0.5 * 1000);
} }
// end workaround // end workaround
});
}, 1 * 1000); }, 1 * 1000);
}); });