diff --git a/lib/API/Startup.js b/lib/API/Startup.js index 5249acc5d..f1b7cbe63 100644 --- a/lib/API/Startup.js +++ b/lib/API/Startup.js @@ -320,7 +320,7 @@ module.exports = function(CLI) { shelljs.exec(command, function(code, stdout, stderr) { if (code === 0) { Common.printOut(chalk.bold('[DONE] ')); - return next(); + return setTimeout(function() { next() }, 500); } else { Common.printOut(chalk.red('[ERROR] Exit code : ' + code)) return next(new Error(command + ' failed, see error above.'));