Skip to content

Commit 90c4d5e

Browse files
committed
fix AXVISOR_VM_CONFIGS separator
1 parent ae4d790 commit 90c4d5e

File tree

2 files changed

+11
-94
lines changed

2 files changed

+11
-94
lines changed

Cargo.lock

Lines changed: 9 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

xtask/src/tbuld.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,12 @@ impl Context {
7878
}
7979

8080
if !vm_config_paths.is_empty() {
81+
let sep = if cfg!(target_os = "windows") { ";" } else { ":" };
8182
let value = vm_config_paths
8283
.iter()
8384
.map(|p| format!("{}", p.display()))
8485
.collect::<Vec<_>>()
85-
.join(";");
86+
.join(&sep);
8687
cargo.env.insert("AXVISOR_VM_CONFIGS".to_string(), value);
8788
}
8889

0 commit comments

Comments
 (0)