Skip to content

Commit

Permalink
migration 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kairoski03 committed Jul 4, 2024
1 parent c509c74 commit d99b733
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion replay/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,12 @@ async fn replay(args: ReplayArgs) -> Result<()> {
cmd.arg(arg);
}
cmd.arg("--child");
#[cfg(unix)]
let err = cmd.exec();
#[cfg(windows)]
let err = cmd.status();

bail!("failed to exec gdb {}", err);
bail!("failed to exec gdb {:?}", err);
}

let provider = sys::new_provider(&args.endpoint)?;
Expand Down

0 comments on commit d99b733

Please sign in to comment.