Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Fixes #874 Install delve if OS is not OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-rao-a committed Mar 19, 2017
1 parent 877ca31 commit 018743d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/goInstallTools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ function getTools(goVersion: SemVersion): { [key: string]: string } {
tools['go-langserver'] = 'github.com/sourcegraph/go-langserver';
}

if (process.platform !== 'darwin') {
tools['delve'] = 'github.com/derekparker/delve/cmd/dlv';
}
return tools;
}

Expand Down

0 comments on commit 018743d

Please sign in to comment.