Created
May 17, 2020 10:00
-
-
Save gonzaloserrano/0822cc31fe27791acf54b6c11041d59c to your computer and use it in GitHub Desktop.
gopls update
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