From 4a762a32642db63da59e08007e289e00c15e7066 Mon Sep 17 00:00:00 2001 From: Joachim Bauch Date: Wed, 7 Feb 2024 11:39:26 +0100 Subject: [PATCH] make: Enable ".DELETE_ON_ERROR". --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 39a017c..167cc90 100644 --- a/Makefile +++ b/Makefile @@ -110,6 +110,7 @@ coverhtml: vet common $(GO) tool cover -html=cover.out -o coverage.html %_easyjson.go: %.go $(GOPATHBIN)/easyjson | $(PROTO_GO_FILES) + rm -f easyjson-bootstrap*.go PATH="$(GODIR)":$(PATH) "$(GOPATHBIN)/easyjson" -all $*.go %.pb.go: %.proto $(GOPATHBIN)/protoc-gen-go $(GOPATHBIN)/protoc-gen-go-grpc @@ -165,3 +166,4 @@ dist: tarball .NOTPARALLEL: $(EASYJSON_GO_FILES) .PHONY: continentmap.go vendor +.DELETE_ON_ERROR: