Skip to content

Commit

Permalink
fix: windows ci part 69 (#6283)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Nov 10, 2023
1 parent 74b641f commit 82abe3d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/test-utils/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ pub fn run_install_commands(root: &Path) {
let mut cmd = Command::new(args[0]);
cmd.args(&args[1..]).current_dir(root);
eprintln!("cd {}; {cmd:?}", root.display());
#[cfg(windows)]
let st = cmd.status();
#[cfg(not(windows))]
let st = cmd.status().unwrap();
eprintln!("\n\n{cmd:?}: {st:?}");
};
Expand Down

0 comments on commit 82abe3d

Please sign in to comment.