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 615131b commit 9e86d76Copy full SHA for 9e86d76
src/bootstrap/src/utils/exec.rs
@@ -120,7 +120,7 @@ impl BootstrapCommand {
120
Self { failure_behavior: BehaviorOnFailure::DelayFail, ..self }
121
}
122
123
- #[must_use]
+ #[allow(dead_code)]
124
pub fn fail_fast(self) -> Self {
125
Self { failure_behavior: BehaviorOnFailure::Exit, ..self }
126
@@ -275,7 +275,7 @@ impl CommandOutput {
275
!self.is_success()
276
277
278
279
pub fn status(&self) -> Option<ExitStatus> {
280
match self.status {
281
CommandStatus::Finished(status) => Some(status),
0 commit comments