Add missing semicolon

This commit is contained in:
Aya Morisawa 2018-07-14 00:05:49 +09:00
parent 874837666c
commit 98ea238087
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ async function init(): Promise<Config> {
}
if (await portscanner.checkPortStatus(config.port, '127.0.0.1') === 'open') {
Logger.error(`Port ${config.port} is already in use`)
Logger.error(`Port ${config.port} is already in use`);
process.exit(1);
}