7 lines
190 B
Text
7 lines
190 B
Text
if [[ $(whence -p go 2> /dev/null) ]]; then
|
|
if [[ ! $(whence -p gopls 2> /dev/null) ]]; then
|
|
pushd /tmp
|
|
go install golang.org/x/tools/gopls@latest
|
|
popd
|
|
fi
|
|
fi
|