Skip to content

Commit

Permalink
fix: windows ci part 69
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Nov 10, 2023
1 parent f27a771 commit 3eea839
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 3eea839

Please sign in to comment.