feat: Exit application with CLI exit code

This commit is contained in:
oSumAtrIX 2023-11-25 15:21:05 +01:00
parent 860fb7b957
commit 36c6a6a5f7
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import java.util.*
fun main(args: Array<String>) {
Logger.setDefault()
CommandLine(MainCommand).execute(*args)
CommandLine(MainCommand).execute(*args).let(System::exit)
}
private object CLIVersionProvider : IVersionProvider {