Only install gopls when go exists

This commit is contained in:
Anthony Cicchetti 2021-05-01 20:22:51 -04:00
parent 730ab418e7
commit 7690e88544

View file

@ -1,10 +1,12 @@
local GO_BIN="$(go env GOPATH)/bin"
if [[ ! -d "${GO_BIN}" ]]; then
mkdir -p "${GO_BIN}"
fi
if [[ $(whence -p go 2> /dev/null) ]]; then
local GO_BIN="$(go env GOPATH)/bin"
if [[ ! -d "${GO_BIN}" ]]; then
mkdir -p "${GO_BIN}"
fi
if [[ ! -a "${GO_BIN}/gopls" ]]; then
pushd "${GO_BIN}"
GO111MODULE=on go get golang.org/x/tools/gopls@latest
popd
if [[ ! -a "${GO_BIN}/gopls" ]]; then
pushd "${GO_BIN}"
GO111MODULE=on go get golang.org/x/tools/gopls@latest
popd
fi
fi