We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8832b0a commit bb4ef68Copy full SHA for bb4ef68
library/std/src/process.rs
@@ -1607,7 +1607,7 @@ impl Into<ExitStatus> for ExitStatusError {
1607
#[unstable(feature = "exit_status_error", issue = "84908")]
1608
impl fmt::Display for ExitStatusError {
1609
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1610
- self.into_status().fmt(f)
+ write!(f, "process exited unsuccessfully: {}", self.into_status())
1611
}
1612
1613
0 commit comments