You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`mkdir()` with `recursive: true` returns the first directory that was
created. VFS passed the provider's return value straight through, so the
path came back in the wrong namespace: `RealFSProvider` returned an
absolute path inside its root, leaking that root to the caller, and a
mounted VFS returned a VFS-internal path without the mount point.
Map the created path back through the provider and mount translations so
the returned value is a path the caller can hand to `fs` again. This
covers the sync, callback, and promises forms.
Signed-off-by: Daijiro Wachi <daijiro.wachi@gmail.com>
0 commit comments