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.
2 parents fadd800 + c39a3d3 commit 8128d6dCopy full SHA for 8128d6d
collector/src/bin/rustc-perf-collector/execute.rs
@@ -167,6 +167,8 @@ impl<'a> CargoProcess<'a> {
167
.env("SHELL", env::var_os("SHELL").unwrap_or_default())
168
// PATH is needed to find things like linkers used by rustc/Cargo.
169
.env("PATH", env::var_os("PATH").unwrap_or_default())
170
+ // HOME is needed for cargo to find its home directory.
171
+ .env("HOME", env::var_os("HOME").unwrap_or_default())
172
.env(
173
"RUSTC_THREAD_COUNT",
174
env::var_os("RUSTC_THREAD_COUNT").unwrap_or_default(),
0 commit comments