fix(cli): remove double print of generate errors

This commit is contained in:
WillLillis 2025-01-08 00:40:57 -05:00 committed by Amaan Qureshi
parent 5a854e6030
commit cbf960ff20

View file

@ -1636,7 +1636,7 @@ fn main() {
}
}
if !err.to_string().is_empty() {
eprintln!("{err:?}");
eprintln!("{err}");
}
std::process::exit(1);
}