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.
CARGO_HOME
1 parent 6a2bd87 commit 404765bCopy full SHA for 404765b
.dockerignore
@@ -0,0 +1,2 @@
1
+**/target
2
+**/Cargo.lock
xtask/src/main.rs
@@ -2030,7 +2030,7 @@ impl Xtasks {
2030
fn pop_cargo_env() -> Result<()> {
2031
let env = std::env::vars().collect::<Vec<_>>();
2032
// RUSTUP TOOLCHAIN exclude is a temporary fix, it might make deving the api codegen crate not work
2033
- let exclude_list = [];
+ let exclude_list = ["CARGO_HOME"];
2034
2035
for (key, value) in env.iter() {
2036
if key.starts_with("CARGO_") && !exclude_list.contains(&(key.as_str())) {
0 commit comments