Skip to content
Snippets Groups Projects
Commit 3d55db0e authored by Aya Morisawa's avatar Aya Morisawa
Browse files

parent 240b10ed
No related branches found
No related tags found
No related merge requests found
......@@ -66,16 +66,16 @@ async function master(): Promise<void> {
}
switch (initResult) {
case InitResult.Success:
Logger.info(chalk.green('Successfully initialized :)'));
break;
case InitResult.Warn:
Logger.warn(chalk.yellow('Initialized with some problem(s) :|'));
break;
case InitResult.Failure:
Logger.error(chalk.red('Fatal error occurred during initializing :('));
process.exit();
return;
case InitResult.Warn:
Logger.warn(chalk.yellow('Initialized with some problem(s) :|'));
break;
case InitResult.Success:
Logger.info(chalk.green('Successfully initialized :)'));
break;
}
// Spawn workers
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment