aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src/main.rs')
-rw-r--r--xtask/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs
index 10499c0..7077d55 100644
--- a/xtask/src/main.rs
+++ b/xtask/src/main.rs
@@ -100,8 +100,8 @@ impl fmt::Display for TestRunError {
TestRunError::CommandError(e) => {
write!(
f,
- "Command failed with exit status {}: {}",
- e.exit_status, e.stdout
+ "Command failed with exit status {}: {} {}",
+ e.exit_status, e.stdout, e.stderr
)
}
TestRunError::PathConversionError(p) => {