From 3f6bf8f7af9eba09ae27b72c39ea47b6c4e7c433 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Thu, 16 Dec 2021 23:33:08 +0100 Subject: [PATCH] updatedevenv: prefer go install, update staticcheck --- script/updatedevenv | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/updatedevenv b/script/updatedevenv index 00b60bf..548653d 100755 --- a/script/updatedevenv +++ b/script/updatedevenv @@ -13,6 +13,7 @@ updatevimplugins echo "Installing gopls..." cd $HOME -go get golang.org/x/tools/gopls@latest +go install golang.org/x/tools/gopls@latest +go install honnef.co/go/tools/cmd/staticcheck@latest echo "Done"