Only install gopls when go exists
This commit is contained in:
parent
730ab418e7
commit
7690e88544
1 changed files with 10 additions and 8 deletions
|
@ -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
|
Loading…
Add table
Reference in a new issue