Created
November 29, 2019 15:14
-
-
Save gonzaloserrano/6e54ac933854c5a1ec30f7f82eba020f to your computer and use it in GitHub Desktop.
update gopls from master
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
set -e | |
gopls version | |
TMP_DIR="$(mktemp -d)" | |
cd "$TMP_DIR" | |
git clone [email protected]:golang/tools.git | |
cd tools/gopls | |
go install . | |
gopls version | |
echo rm -rf "$TMP_DIR" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment