mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 07:33:08 +02:00
Add missing semicolon
This commit is contained in:
parent
874837666c
commit
98ea238087
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue