From 131a862d313f12808d63e832126317a27226940b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Mon, 16 Jul 2018 22:39:25 +0200 Subject: [PATCH] fix makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4c1c83bc75fe44e1a6e823f1bcd7173bae5a066e..116f645420dfe33964ed6501baa1fb6529c869b2 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ all: build -build: git-bug +build: go generate go build -tags=deploy_build . @@ -8,4 +8,4 @@ install: go generate go install -tags=deploy_build . -.PHONY: install +.PHONY: build install