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
fix(paths): replace path.sep with normalizePath across codebase
Replace platform-specific path.sep usage with normalized paths for consistent
cross-platform behavior:
- bootstrap.mts: Use path.join(...segments).replace(/\\/g, '/') for tarball paths
- bootstrap.mts: Normalize path.relative() result and use '../' instead of path.sep
- home-path.mts: Normalize cwd before regex matching, simplify pattern to '/'
All paths now use forward slashes consistently regardless of platform.
0 commit comments