From 899988fb04f4aa477c14e979f173216c0c2aadae Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Wed, 29 Jan 2020 23:00:00 +0900 Subject: Add go installer/efm-langserver installer --- installer/go_install.cmd | 18 ++++++++++++++++++ installer/go_install.sh | 10 ++++++++++ installer/install-efm-langserver.cmd | 3 +++ installer/install-efm-langserver.sh | 5 +++++ 4 files changed, 36 insertions(+) create mode 100644 installer/go_install.cmd create mode 100755 installer/go_install.sh create mode 100644 installer/install-efm-langserver.cmd create mode 100755 installer/install-efm-langserver.sh diff --git a/installer/go_install.cmd b/installer/go_install.cmd new file mode 100644 index 0000000..b4200ad --- /dev/null +++ b/installer/go_install.cmd @@ -0,0 +1,18 @@ +@echo off + +if "x%1" equ "x" goto :EOF +if "x%2" equ "x" goto :EOF + +setlocal + +set GOPATH=%CD%\go + +go get %2 + +echo @echo off ^ + +%%~dp0\go\bin\%1.exe %%* ^ + +> %1.cmd + +endlocal diff --git a/installer/go_install.sh b/installer/go_install.sh new file mode 100755 index 0000000..d60925b --- /dev/null +++ b/installer/go_install.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# Usage +# $ go_install [EXECUTABLE_NAME] [GO_GET_URLPATH] + +set -e + +GOPATH=$(pwd)/go +go get "$2" +ln -s "./go/bin/$1" . diff --git a/installer/install-efm-langserver.cmd b/installer/install-efm-langserver.cmd new file mode 100644 index 0000000..9bf3110 --- /dev/null +++ b/installer/install-efm-langserver.cmd @@ -0,0 +1,3 @@ +@echo off + +call "%~dp0\go_install.cmd" efm-langserver github.com/mattn/efm-langserver diff --git a/installer/install-efm-langserver.sh b/installer/install-efm-langserver.sh new file mode 100755 index 0000000..d967fa5 --- /dev/null +++ b/installer/install-efm-langserver.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +set -e + +"$(dirname $0)/go_install.sh" efm-langserver github.com/mattn/efm-langserver -- cgit v1.2.3-54-g00ecf