We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c73cd6 commit 6c13638Copy full SHA for 6c13638
crates/packager/src/shell.rs
@@ -83,13 +83,11 @@ impl CommandExt for Command {
83
if output.status.success() {
84
Ok(output)
85
} else {
86
- Err(std::io::Error::other(
87
- format!(
88
- "failed to run command: {self:?}\nstdout: {}\nstderr: {}",
89
- String::from_utf8_lossy(&output.stdout),
90
- String::from_utf8_lossy(&output.stderr)
91
- ),
92
- ))
+ Err(std::io::Error::other(format!(
+ "failed to run command: {self:?}\nstdout: {}\nstderr: {}",
+ String::from_utf8_lossy(&output.stdout),
+ String::from_utf8_lossy(&output.stderr)
+ )))
93
}
94
95
0 commit comments