Compare commits

..

No commits in common. "b7583f4db074e32687a2fdba63303010774201a2" and "a5dd011506b573140fca627e892fd5dd43abf2f6" have entirely different histories.

2 changed files with 1 additions and 8 deletions

View File

@ -7,10 +7,3 @@ edition = "2021"
[dependencies]
clap = { version = "4.4.8", features = ["derive", "unicode", "wrap_help"] }
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1

View File

@ -120,7 +120,7 @@ fn run_command(retry: &mut Retry) {
println!("Restarting...");
restart(retry);
} else {
print!("The process has crashed more then {} times in the past {}, stop restarting\n", retry.max_retries, retry.restart_name);
print!("The process has crashed more then {} times in the past {}, stop restarting", retry.max_retries, retry.restart_name);
}
}
}