aboutsummaryrefslogtreecommitdiff
path: root/installer
diff options
context:
space:
mode:
authorTsuyoshi CHO <Tsuyoshi.CHO@Gmail.com>2019-12-28 11:57:09 +0900
committerTsuyoshi CHO <Tsuyoshi.CHO@Gmail.com>2019-12-28 11:57:09 +0900
commit45a0aa937fda907dcf2ce52362b8a69ea3a2fa62 (patch)
tree91ac66cc9afa1f22bbce10f6f2a7a9b98874720a /installer
parent932a20589052608c4f540011b2ecaedf15bc4cef (diff)
parent89443bbc2c2f4cedd1f955208f2b181a180dc654 (diff)
downloadvim-lsp-settings-45a0aa937fda907dcf2ce52362b8a69ea3a2fa62.tar.gz
vim-lsp-settings-45a0aa937fda907dcf2ce52362b8a69ea3a2fa62.tar.bz2
vim-lsp-settings-45a0aa937fda907dcf2ce52362b8a69ea3a2fa62.zip
Merge branch 'master' into fix/windows-native-py3
Diffstat (limited to 'installer')
-rw-r--r--installer/install-gopls.cmd2
-rwxr-xr-xinstaller/install-gopls.sh2
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