Skip to content

Commit

Permalink
fix: fix typo in stderr redirection
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegec committed Jun 19, 2024
1 parent 31ba8bf commit ed8b6df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker/src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async fn get_output_logged(
.args(args)
.current_dir(cwd)
.stdout(Stdio::piped())
.stdout(Stdio::piped())
.stderr(Stdio::piped())
.spawn()?;

let elapsed = begin.elapsed();
Expand Down

0 comments on commit ed8b6df

Please sign in to comment.