Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpolden/echoip.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2018-08-27 21:45:51 +0300
committerMartin Polden <mpolden@mpolden.no>2018-08-27 22:13:06 +0300
commitfefe3713699a0caf585d496a271e6f3a43c5188b (patch)
tree616456b86522f73a69e58b024ac4e823520634ba /Makefile
parent988f3fd19ad03bdd09e65092725ebdf45ab084f3 (diff)
Use Go modules
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 60a2441..d840170 100644
--- a/Makefile
+++ b/Makefile
@@ -23,12 +23,12 @@ ifdef TRAVIS
endif
check-fmt:
- bash -c 'diff --line-format="%L" <(echo -n) <(gofmt -d -s $$(find . -type f -name "*.go" -not -path "./vendor/*"))'
+ bash -c "diff --line-format='%L' <(echo -n) <(gofmt -d -s .)"
lint: check-fmt vet megacheck
deps:
- go get -d -v ./...
+ go get
install:
go install ./...