debugger: Fix go locator creating false scenarios (#31583)
This caused other locators to fail because go would accept build tasks that it couldn't actually resolve Release Notes: - N/A
This commit is contained in:
@@ -23,6 +23,10 @@ impl DapLocator for GoLocator {
|
||||
resolved_label: &str,
|
||||
adapter: DebugAdapterName,
|
||||
) -> Option<DebugScenario> {
|
||||
if build_config.command != "go" {
|
||||
return None;
|
||||
}
|
||||
|
||||
let go_action = build_config.args.first()?;
|
||||
|
||||
match go_action.as_str() {
|
||||
|
||||
Reference in New Issue
Block a user