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 f334cbd + d62ae98 commit 1bc9a1aCopy full SHA for 1bc9a1a
test/integration-test/build.rs
@@ -147,8 +147,10 @@ fn main() {
147
]);
148
149
// Workaround to make sure that the rust-toolchain.toml is respected.
150
- cmd.env_remove("RUSTUP_TOOLCHAIN")
151
- .current_dir(integration_ebpf_dir);
+ for key in ["RUSTUP_TOOLCHAIN", "RUSTC"] {
+ cmd.env_remove(key);
152
+ }
153
+ cmd.current_dir(integration_ebpf_dir);
154
155
// Workaround for https://github.com/rust-lang/cargo/issues/6412 where cargo flocks itself.
156
let ebpf_target_dir = out_dir.join("integration-ebpf");
0 commit comments