diff options
author | mattn <mattn.jp@gmail.com> | 2020-01-23 11:57:40 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 11:57:40 +0900 |
commit | be12c8d72a34afd09602c7f0d2711334c7a7a59c (patch) | |
tree | 1c38436b20ce5b9c15c2ffc86d490f8c0bf736d5 /installer/install-gopls.sh | |
parent | 686178f54e0e39be3aef5fa169ff9545e9044389 (diff) | |
parent | 8590aebc2765572c0567c6340f0b33f7900ab6f7 (diff) | |
download | vim-lsp-settings-be12c8d72a34afd09602c7f0d2711334c7a7a59c.tar.gz vim-lsp-settings-be12c8d72a34afd09602c7f0d2711334c7a7a59c.tar.bz2 vim-lsp-settings-be12c8d72a34afd09602c7f0d2711334c7a7a59c.zip |
Merge pull request #99 from johejo/fix/gopls_latest
fix: use gopls latest
Diffstat (limited to 'installer/install-gopls.sh')
-rwxr-xr-x | installer/install-gopls.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/install-gopls.sh b/installer/install-gopls.sh index de5c72b..22e0b1c 100755 --- a/installer/install-gopls.sh +++ b/installer/install-gopls.sh @@ -2,5 +2,5 @@ set -e -GOPATH=$(pwd) GOBIN=$(pwd) go get -v golang.org/x/tools/gopls +GOPATH=$(pwd) GOBIN=$(pwd) GO111MODULE=on go get -v golang.org/x/tools/gopls@latest rm -rf src |