diff options
author | Tsuyoshi CHO <Tsuyoshi.CHO@Gmail.com> | 2019-12-28 11:57:09 +0900 |
---|---|---|
committer | Tsuyoshi CHO <Tsuyoshi.CHO@Gmail.com> | 2019-12-28 11:57:09 +0900 |
commit | 45a0aa937fda907dcf2ce52362b8a69ea3a2fa62 (patch) | |
tree | 91ac66cc9afa1f22bbce10f6f2a7a9b98874720a /installer | |
parent | 932a20589052608c4f540011b2ecaedf15bc4cef (diff) | |
parent | 89443bbc2c2f4cedd1f955208f2b181a180dc654 (diff) | |
download | vim-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.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 |