From fb3fea3371fe65f4349d9e41b9e019604e55099c Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Mon, 2 Mar 2020 12:55:29 +0900 Subject: Use @ latest --- installer/install-efm-langserver.cmd | 2 +- installer/install-gopls.cmd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'installer') diff --git a/installer/install-efm-langserver.cmd b/installer/install-efm-langserver.cmd index fc692b9..1d286cd 100644 --- a/installer/install-efm-langserver.cmd +++ b/installer/install-efm-langserver.cmd @@ -1,3 +1,3 @@ @echo off -call "%~dp0\go_install.cmd" github.com/mattn/efm-langserver +call "%~dp0\go_install.cmd" github.com/mattn/efm-langserver@latest diff --git a/installer/install-gopls.cmd b/installer/install-gopls.cmd index 444e1ae..7371402 100644 --- a/installer/install-gopls.cmd +++ b/installer/install-gopls.cmd @@ -1,3 +1,3 @@ @echo off -call "%~dp0\go_install.cmd" golang.org/x/tools/gopls +call "%~dp0\go_install.cmd" golang.org/x/tools/gopls@latest -- cgit v1.2.3-54-g00ecf From f9dd318aede0e17399663299cf89b8c2bf18dcc1 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Mon, 2 Mar 2020 12:58:28 +0900 Subject: ditto --- installer/install-efm-langserver.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'installer') diff --git a/installer/install-efm-langserver.sh b/installer/install-efm-langserver.sh index efad942..2d87599 100755 --- a/installer/install-efm-langserver.sh +++ b/installer/install-efm-langserver.sh @@ -2,4 +2,4 @@ set -e -"$(dirname "$0")/go_install.sh" github.com/mattn/efm-langserver +"$(dirname "$0")/go_install.sh" github.com/mattn/efm-langserver@latest -- cgit v1.2.3-54-g00ecf From 864f68ddf2973cebe6463948219bc603b309575e Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Mon, 2 Mar 2020 13:07:22 +0900 Subject: Ignore error for removing pkg src --- installer/go_install.cmd | 2 +- installer/go_install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'installer') diff --git a/installer/go_install.cmd b/installer/go_install.cmd index fbd63c2..16e1ca8 100644 --- a/installer/go_install.cmd +++ b/installer/go_install.cmd @@ -5,4 +5,4 @@ if "x%1" equ "x" goto :EOF set GOPATH=%cd% set GOBIN=%cd% go get -v -u %1 -rd /S /Q "src" +rd /S /Q "src" "pkg" 2> NULL diff --git a/installer/go_install.sh b/installer/go_install.sh index b399969..be5feff 100755 --- a/installer/go_install.sh +++ b/installer/go_install.sh @@ -6,4 +6,4 @@ set -e GOPATH=$(pwd) GOBIN=$(pwd) GO111MODULE=on go get -v "$1" -rm -rf src +rm -rf src pkg 2> /dev/null -- cgit v1.2.3-54-g00ecf