Skip to content

Commit 82abe3d

Browse files
authored
fix: windows ci part 69 (#6283)
1 parent 74b641f commit 82abe3d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

crates/test-utils/src/util.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@ pub fn run_install_commands(root: &Path) {
9898
let mut cmd = Command::new(args[0]);
9999
cmd.args(&args[1..]).current_dir(root);
100100
eprintln!("cd {}; {cmd:?}", root.display());
101+
#[cfg(windows)]
102+
let st = cmd.status();
103+
#[cfg(not(windows))]
101104
let st = cmd.status().unwrap();
102105
eprintln!("\n\n{cmd:?}: {st:?}");
103106
};

0 commit comments

Comments
 (0)