Exit client when no args are inputed

This commit is contained in:
Erik Reider 2022-01-10 23:28:52 +01:00
parent d45a1a7712
commit e96b6eaac9

View File

@ -52,7 +52,7 @@ public int command_line (string[] args) {
try {
if (args.length < 2) {
print_help (args);
return 1;
Process.exit (1);
}
switch (args[1]) {
case "--help":