We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcb1b4b commit 92cdf32Copy full SHA for 92cdf32
src/goInstallTools.ts
@@ -568,17 +568,6 @@ function getMissingTools(goVersion: GoVersion): Promise<Tool[]> {
568
(tool) =>
569
new Promise<Tool>((resolve, reject) => {
570
const toolPath = getBinPath(tool.name);
571
- if (tool.name === 'dlv-dap') {
572
- // Check if user already has dlv-dap binary.
573
- // If so, it's likely the user may be interested in updating the tool,
574
- // so we should mark it as important and return as a missing tool.
575
- if (path.isAbsolute(toolPath)) {
576
- tool.isImportant = true;
577
- resolve(tool);
578
- return;
579
- }
580
- tool.isImportant = false;
581
582
resolve(path.isAbsolute(toolPath) ? null : tool);
583
})
584
)
0 commit comments