aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRastislav Szabo <raszabo@cisco.com>2017-05-22 11:24:42 +0200
committerRastislav Szabo <raszabo@cisco.com>2017-05-22 11:24:42 +0200
commitc60a4ee4e6114ff0dc3cbc9fd9a58321ca2a8abc (patch)
tree6cc9ce3408ab712e85a3d54aa3ec5827a4b63896 /Makefile
parent4b0cfc7539ec6fdbc462f60269656fee761bafaf (diff)
fixed golint issues
Change-Id: I325fa618d8db7a9f1783ec7d208fd7b6e853d9a3 Signed-off-by: Rastislav Szabo <raszabo@cisco.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 859ed1e..a11ffa4 100644
--- a/Makefile
+++ b/Makefile
@@ -17,6 +17,6 @@ generate:
@cd examples && go generate ./...
lint:
- @golint ./... | grep -v vendor | grep -v bin_api
+ @golint ./... | grep -v vendor | grep -v bin_api || true
.PHONY: build test install clean generate