Remove trailing newlines in error messages (#8322)

This commit is contained in:
konsti 2024-10-18 17:17:41 +02:00 committed by GitHub
parent d296e7270a
commit 23c80c547c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 25 additions and 7 deletions

View file

@ -129,7 +129,7 @@ async fn main() -> ExitCode {
if let Err(err) = result {
eprintln!("{}", "uv-dev failed".red().bold());
for err in err.chain() {
eprintln!(" {}: {}", "Caused by".red().bold(), err);
eprintln!(" {}: {}", "Caused by".red().bold(), err.to_string().trim());
}
ExitCode::FAILURE
} else {