1 parent 6a8070a commit 61a012fCopy full SHA for 61a012f
1 file changed
crates/vp_cli_snapshots/tests/cli_snapshots/main.rs
@@ -1103,6 +1103,11 @@ fn start_local_registry(
1103
if let Some(profile) = std::env::var_os("USERPROFILE") {
1104
cmd.env("USERPROFILE", profile);
1105
}
1106
+ // The registry uses CI to keep Bun's cache off the Windows Dev Drive.
1107
+ // Preserve it only for this helper; fixture commands stay isolated.
1108
+ if let Some(ci) = std::env::var_os("CI") {
1109
+ cmd.env("CI", ci);
1110
+ }
1111
group_leader(&mut cmd);
1112
let mut child = cmd
1113
.spawn()
0 commit comments