Skip to content

Commit

Permalink
Merge pull request OCamlPro#5 from nberth/fix-default-config-resolver
Browse files Browse the repository at this point in the history
Fix default config resolver
  • Loading branch information
nberth committed Apr 8, 2024
2 parents 8bce5ed + dd2a466 commit a1576ed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ class GdbConfigurationProvider implements vscode.DebugConfigurationProvider {
if (config.request === undefined) {
config.request = "launch";
}
if (config.preLaunchTask === undefined) {
config.preLaunchTask = "SuperBOL: build (debug)";
}
if (config.target === undefined) {
config.target = "${file}";
}
Expand Down

0 comments on commit a1576ed

Please sign in to comment.