diff options
-rw-r--r-- | installer/install-gopls.cmd | 2 | ||||
-rwxr-xr-x | installer/install-gopls.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/installer/install-gopls.cmd b/installer/install-gopls.cmd index 9c08e36..98634f9 100644 --- a/installer/install-gopls.cmd +++ b/installer/install-gopls.cmd @@ -11,5 +11,5 @@ cd /d "%server_dir%" set GOPATH=%cd%
set GOBIN=%cd%
-go get -v -u golang.org/x/tools/cmd/gopls
+go get -v -u golang.org/x/tools/gopls
rd /S /Q "src"
diff --git a/installer/install-gopls.sh b/installer/install-gopls.sh index 8593e7f..f504413 100755 --- a/installer/install-gopls.sh +++ b/installer/install-gopls.sh @@ -6,5 +6,5 @@ cd $(dirname $0) [ -d ../servers/gopls ] && rm -rf ../servers/gopls mkdir ../servers/gopls cd ../servers/gopls -GOPATH=$(pwd) GOBIN=$(pwd) go get -v -u golang.org/x/tools/cmd/gopls +GOPATH=$(pwd) GOBIN=$(pwd) go get -v -u golang.org/x/tools/gopls rm -rf src |