fix(windows): avoid verbatim paths (#3638)

This commit is contained in:
David Knaack
2022-02-24 00:32:35 +01:00
committed by GitHub
parent bfff44fddb
commit 1a8aa96b7f
6 changed files with 36 additions and 11 deletions
+2
View File
@@ -3,4 +3,6 @@ disallowed-methods = [
"std::process::Command::new",
# Setting environment variables can cause issues with non-rust code
"std::env::set_var",
# use `dunce` to avoid UNC/verbatim paths, where possible
"std::fs::canonicalize",
]