We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82b2d8e commit d7b02c3Copy full SHA for d7b02c3
build_system/prepare.rs
@@ -18,7 +18,14 @@ pub(crate) fn prepare(dirs: &Dirs) {
18
19
// FIXME maybe install this only locally?
20
eprintln!("[INSTALL] hyperfine");
21
- Command::new("cargo").arg("install").arg("hyperfine").spawn().unwrap().wait().unwrap();
+ Command::new("cargo")
22
+ .arg("install")
23
+ .arg("hyperfine")
24
+ .env_remove("CARGO_TARGET_DIR")
25
+ .spawn()
26
+ .unwrap()
27
+ .wait()
28
+ .unwrap();
29
30
super::abi_cafe::ABI_CAFE_REPO.fetch(dirs);
31
super::tests::RAND_REPO.fetch(dirs);
0 commit comments