Skip to content

Commit 0ae73c8

Browse files
committed
Use std.fs.path.resolve for relative workspace configuration
1 parent dfb02d8 commit 0ae73c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Server.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ fn handleConfiguration(server: *Server, json: std.json.Value) error{OutOfMemory}
778778
break :check_relative;
779779
};
780780

781-
const absolute = try std.fs.path.join(arena, &.{
781+
const absolute = try std.fs.path.resolve(arena, &.{
782782
root_dir, maybe_relative,
783783
});
784784

0 commit comments

Comments
 (0)