diff --git a/lib/wasix/src/runtime/resolver/outputs.rs b/lib/wasix/src/runtime/resolver/outputs.rs index a52b9fa6d0a..028fc0c14c6 100644 --- a/lib/wasix/src/runtime/resolver/outputs.rs +++ b/lib/wasix/src/runtime/resolver/outputs.rs @@ -216,5 +216,7 @@ pub struct ResolvedPackage { pub commands: BTreeMap, pub entrypoint: Option, /// A mapping from paths to the volumes that should be mounted there. + /// Note: mappings at the start of the list obscure mappings at the end of the list + /// thus this list represents an inheritance tree pub filesystem: Vec, } diff --git a/lib/wasix/src/runtime/resolver/resolve.rs b/lib/wasix/src/runtime/resolver/resolve.rs index 49410de831a..9407cd7ec7f 100644 --- a/lib/wasix/src/runtime/resolver/resolve.rs +++ b/lib/wasix/src/runtime/resolver/resolve.rs @@ -381,11 +381,7 @@ fn resolve_package(dependency_graph: &DependencyGraph) -> Result v, Err(e) => {