diff options
Diffstat (limited to 'src/bun.js')
-rw-r--r-- | src/bun.js/node/types.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bun.js/node/types.zig b/src/bun.js/node/types.zig index 6bee1243f..2dcbad38f 100644 --- a/src/bun.js/node/types.zig +++ b/src/bun.js/node/types.zig @@ -1556,9 +1556,9 @@ pub const Path = struct { const base_slice = path.slice(); const out = if (isWindows) - std.fs.path.dirnameWindows(base_slice) orelse "C:\\" + std.fs.path.dirnameWindows(base_slice) orelse "." else - std.fs.path.dirnamePosix(base_slice) orelse "/"; + std.fs.path.dirnamePosix(base_slice) orelse "."; return JSC.ZigString.init(out).toValueGC(globalThis); } |