Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 56bb848

Browse files
committed
fix(plugins/plugin-bash-like): another fix for windows replay of notebooks
remove use of `normalize` against vfs filepaths
1 parent 82429f5 commit 56bb848

File tree

1 file changed

+1
-1
lines changed
  • plugins/plugin-bash-like/fs/src/vfs

1 file changed

+1
-1
lines changed

plugins/plugin-bash-like/fs/src/vfs/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ export function mount(vfs: VFS | VFSProducingFunction, placeholderMountPath?: st
214214

215215
/** @return the absolute path to `filepath` */
216216
export function absolute(filepath: string): string {
217-
return normalize(isAbsolute(Util.expandHomeDir(filepath.toString())) ? filepath : join(Util.cwd(), filepath))
217+
return isAbsolute(Util.expandHomeDir(filepath.toString())) ? filepath : normalize(join(Util.cwd(), filepath))
218218
}
219219

220220
/** Lookup compiatible matching mount */

0 commit comments

Comments
 (0)