From 9f05442bce3cfd69ec7539ce90b4f7e9fe68dc63 Mon Sep 17 00:00:00 2001 From: Chris Lane Date: Wed, 29 Jan 2020 13:59:31 -0500 Subject: [PATCH] fix: Makefile Resolves an error whereby `make build` would fail to call `go generate` prior to calling `go build`. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 999f534..ee8dbbb 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ releases := \ ## build: builds an executable for your architecture .PHONY: build -build: $(dist_dir) +build: $(dist_dir) clean generate $(GO) build $(BUILD_FLAGS) -o $(dist_dir)/cheat $(cmd_dir) ## build-release: builds release executables