maint(main): simply return out of the main function
instead of calling exit()
This commit is contained in:
parent
84ea4e48af
commit
48851fa8d3
@ -322,7 +322,7 @@ fn main() {
|
|||||||
println!(
|
println!(
|
||||||
"\nExample:\n alterware-launcher.exe iw4x --bonus --pass \"-console -nointro\""
|
"\nExample:\n alterware-launcher.exe iw4x --bonus --pass \"-console -nointro\""
|
||||||
);
|
);
|
||||||
std::process::exit(0);
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if arg_bool(&args, "--version") || arg_bool(&args, "-v") {
|
if arg_bool(&args, "--version") || arg_bool(&args, "-v") {
|
||||||
@ -342,7 +342,7 @@ fn main() {
|
|||||||
"mxve".bright_magenta().on_black().underline(),
|
"mxve".bright_magenta().on_black().underline(),
|
||||||
".de".on_black().underline()
|
".de".on_black().underline()
|
||||||
);
|
);
|
||||||
std::process::exit(0);
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let install_path: PathBuf;
|
let install_path: PathBuf;
|
||||||
|
Loading…
Reference in New Issue
Block a user