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 680875b commit f8c32beCopy full SHA for f8c32be
plrustc/plrustc/src/main.rs
@@ -54,10 +54,13 @@ fn clear_env() {
54
.map(|(name, _)| name)
55
.filter(|name| {
56
let name = name.to_string_lossy().to_lowercase();
57
- !(name.starts_with("rust")
58
- || name.starts_with("plrust")
59
- || name.starts_with("cargo")
60
- || name == "path")
+ !(
+ name.starts_with("plrust")
+ // || name.starts_with("rust")
+ // || name.starts_with("cargo")
61
+ || name == "path"
62
+ // || name == "rustflags"
63
+ )
64
})
65
.collect::<Vec<_>>();
66
for name in all_var_names {
0 commit comments