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 d38376d commit 524ac2dCopy full SHA for 524ac2d
build_system/landlock.rs
@@ -49,6 +49,14 @@ pub(super) fn lock_build(cargo: &Path, frozen: bool) {
49
&[env::current_dir().unwrap().join("build"), env::current_dir().unwrap().join("dist")],
50
access_all,
51
))
52
+ .unwrap()
53
+ .add_rules(path_beneath_rules(
54
+ &[
55
+ #[allow(deprecated)]
56
+ std::env::home_dir().unwrap().join(".wine"),
57
+ ],
58
+ access_all,
59
+ ))
60
.unwrap();
61
62
let ruleset = if frozen {
0 commit comments