From 90076e1d076156197370caaadcd19426345e5338 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Mon, 8 Sep 2025 15:04:51 +0200 Subject: [PATCH] dap: use slash separator when reading ref files Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- dap/variables.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dap/variables.go b/dap/variables.go index 288209c81..f613f00b8 100644 --- a/dap/variables.go +++ b/dap/variables.go @@ -203,7 +203,7 @@ func fsVars(ctx context.Context, ref gateway.Reference, path string, vars *varia Name: file.Path, } - fullpath := filepath.Join(path, file.Path) + fullpath := filepath.ToSlash(filepath.Join(path, file.Path)) if file.IsDir() { fv.Name += "/" fv.VariablesReference = vars.New(func() []dap.Variable {