From cbf960ff204f592876c3c3b35ea2f4475ac0daf5 Mon Sep 17 00:00:00 2001 From: WillLillis Date: Wed, 8 Jan 2025 00:40:57 -0500 Subject: [PATCH] fix(cli): remove double print of generate errors --- cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index 1534e070..97a076c7 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -1636,7 +1636,7 @@ fn main() { } } if !err.to_string().is_empty() { - eprintln!("{err:?}"); + eprintln!("{err}"); } std::process::exit(1); }