We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e69dfc5 commit 867169dCopy full SHA for 867169d
build_system/build_sysroot.rs
@@ -48,7 +48,7 @@ pub(crate) fn build_sysroot(
48
build_cargo_wrapper_cmd
49
.arg("scripts/cargo-clif.rs")
50
.arg("-o")
51
- .arg(target_dir.join("cargo-clif"))
+ .arg(target_dir.join(if cfg!(windows) { "cargo-clif.exe" } else { "cargo-clif" }))
52
.arg("-g");
53
spawn_and_wait(build_cargo_wrapper_cmd);
54
0 commit comments