Skip to content

Commit

Permalink
Merge pull request #1533 from tgodzik/fix-debug
Browse files Browse the repository at this point in the history
bugfix: Use normal debug console without a workspace
  • Loading branch information
tgodzik authored Sep 4, 2024
2 parents bc75810 + eb629cc commit 5314f77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/metals-vscode/src/debugger/scalaDebugger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ async function runMain(main: ExtendedScalaRunMain): Promise<boolean> {

await tasks.executeTask(task);
return true;
} else {
return debug(true, main);
}
return Promise.resolve(false);
}

export async function startDiscovery(
Expand Down

0 comments on commit 5314f77

Please sign in to comment.