From b3ce38e5cc7c9dbb47e78d9c64048051e01f3fb8 Mon Sep 17 00:00:00 2001 From: Yoshito Komatsu Date: Fri, 20 Mar 2026 12:29:45 +0900 Subject: [PATCH] Fix path separator issue on Windows --- cmd/ssh.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/ssh.go b/cmd/ssh.go index 9083add28..6697d22da 100644 --- a/cmd/ssh.go +++ b/cmd/ssh.go @@ -7,7 +7,7 @@ import ( "io" "os" "os/exec" - "path/filepath" + "path" "strings" "time" @@ -495,7 +495,7 @@ func (cmd *SSHCmd) startTunnel(ctx context.Context, devPodConfig *config.Config, } } - workdir := filepath.Join("/workspaces", workspaceClient.Workspace()) + workdir := path.Join("/workspaces", workspaceClient.Workspace()) if cmd.WorkDir != "" { workdir = cmd.WorkDir }