Skip to content

Commit

Permalink
fix(hydro_deploy): improve error message when crates fail to build (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
shadaj authored Jan 30, 2025
1 parent ccf84d6 commit 070b6e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hydro_deploy/core/src/hydroflow_crate/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ impl Display for BuildError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::FailedToBuildCrate(exit_status, diagnostics) => {
writeln!(f, "Failed to build crate (exit status {}):", exit_status)?;
writeln!(f, "Failed to build crate ({}):", exit_status)?;
for diagnostic in diagnostics {
write!(f, "{}", diagnostic)?;
}
Expand Down

0 comments on commit 070b6e0

Please sign in to comment.