Merge pull request #3315 from jsternberg/dap-target-launch-config

dap: correctly set the target when provided by the launch config
This commit is contained in:
Tõnis Tiigi
2025-07-14 17:20:55 -07:00
committed by GitHub
+3
View File
@@ -61,6 +61,9 @@ func (d *adapterProtocolDebugger) Start(printer *progress.Printer, opts *BuildOp
if cfg.ContextPath != "" {
opts.ContextPath = cfg.ContextPath
}
if cfg.Target != "" {
opts.Target = cfg.Target
}
return nil
}