mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
14 lines
187 B
Batchfile
14 lines
187 B
Batchfile
@echo off
|
|
|
|
if "x%1" equ "x" goto :EOF
|
|
|
|
setlocal
|
|
|
|
set GO111MODULE=on
|
|
set GOPATH=%cd%
|
|
set GOBIN=%cd%
|
|
go install -v %1
|
|
set GOBIN=
|
|
go clean -modcache
|
|
rd /S /Q "src" "pkg" 2> NUL
|