Skip to content

Commit fc55eb8

Browse files
committed
this builds without rustc-ice errors
1 parent 73709d3 commit fc55eb8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

rust/crates/command/src/command.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ impl CommandBuilder {
550550
#[async_recursion]
551551
#[track_caller]
552552
pub async fn run_raw(&self) -> Result<CommandOutput> {
553-
let result: eyre::Result<CommandOutput> = (async ||{
553+
// let result: eyre::Result<CommandOutput> = (async ||{
554554
// Check cache
555555
match self.get_cached_output().await {
556556
Ok(None) => {}
@@ -685,10 +685,10 @@ impl CommandBuilder {
685685

686686
// Return success
687687
Ok(output)
688-
})().await;
689-
result
690-
.wrap_err(format!("Invoking command `{}`", self.summarize()))
691-
.wrap_err(format!("Called from {}", std::panic::Location::caller()))
688+
// })().await;
689+
// result
690+
// .wrap_err(format!("Invoking command `{}`", self.summarize()))
691+
// .wrap_err(format!("Called from {}", std::panic::Location::caller()))
692692
}
693693

694694
pub async fn run<T>(&self) -> Result<T>

0 commit comments

Comments
 (0)