Skip to content

Commit

Permalink
ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
neonphog committed Jun 28, 2024
1 parent cd4d0de commit fcd4f6b
Show file tree
Hide file tree
Showing 6 changed files with 550 additions and 682 deletions.
4 changes: 2 additions & 2 deletions rust/sbd-o-bahn-server-tester/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ impl Server {
) -> Result<Self> {
let prog = args.remove(0);
let mut cmd = tokio::process::Command::new(prog);
cmd.args(args);
cmd.kill_on_drop(true)
cmd.args(args)
.kill_on_drop(true)
.stdin(std::process::Stdio::piped())
.stdout(std::process::Stdio::piped());

Expand Down
Loading

0 comments on commit fcd4f6b

Please sign in to comment.