diff --git a/native/src/core/module.rs b/native/src/core/module.rs index 9274151d6..543dfe237 100644 --- a/native/src/core/module.rs +++ b/native/src/core/module.rs @@ -287,10 +287,10 @@ impl FsNode { match node { FsNode::Directory { .. } | FsNode::File { .. } => { let src = Utf8CString::from(base_dir).join_path(name); - bind_mount( + mount_dummy( "mount", &src, - path.real(), + path.worker(), matches!(node, FsNode::Directory { .. }), ); }