Skip to content

Commit

Permalink
Only keep PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
thomcc committed Nov 2, 2023
1 parent f8c32be commit 5f76f78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plrustc/plrustc/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ fn clear_env() {
.filter(|name| {
let name = name.to_string_lossy().to_lowercase();
!(
name.starts_with("plrust")
// name.starts_with("plrust")
// || name.starts_with("rust")
// || name.starts_with("cargo")
|| name == "path"
name == "path"
// || name == "rustflags"
)
})
Expand Down

0 comments on commit 5f76f78

Please sign in to comment.