File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -550,7 +550,7 @@ impl CommandBuilder {
550
550
#[ async_recursion]
551
551
#[ track_caller]
552
552
pub async fn run_raw ( & self ) -> Result < CommandOutput > {
553
- let result: eyre:: Result < CommandOutput > = ( async ||{
553
+ // let result: eyre::Result<CommandOutput> = (async ||{
554
554
// Check cache
555
555
match self . get_cached_output ( ) . await {
556
556
Ok ( None ) => { }
@@ -685,10 +685,10 @@ impl CommandBuilder {
685
685
686
686
// Return success
687
687
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()))
692
692
}
693
693
694
694
pub async fn run < T > ( & self ) -> Result < T >
You can’t perform that action at this time.
0 commit comments