diff options
| author | datdenkikniet <jcdra1@gmail.com> | 2023-04-15 21:16:45 +0200 |
|---|---|---|
| committer | datdenkikniet <jcdra1@gmail.com> | 2023-04-16 13:08:46 +0200 |
| commit | d838286de679a1ac35ea79999816418cd02b7259 (patch) | |
| tree | c98736f11bfdac5c4c46e6299436aeed529387e5 /xtask/src/main.rs | |
| parent | 859cd418f063590a9928b3e43caeea0b53dc0823 (diff) | |
Fix config pickup behaviour so that both examples and usage-examples build
correctly
Diffstat (limited to 'xtask/src/main.rs')
| -rw-r--r-- | xtask/src/main.rs | 4 |
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) => { |
