restart required ex.code 101->201

rust panic returns 101, so this wasn't a good choice
This commit is contained in:
2023-08-22 11:37:34 +02:00
parent d8609fd7b1
commit 32f9fc2afe
2 changed files with 2 additions and 2 deletions

View File

@@ -109,7 +109,7 @@ fn self_update(update_only: bool) {
if !update_only {
std::io::stdin().read_line(&mut String::new()).unwrap();
}
std::process::exit(101);
std::process::exit(201);
}
}