From 9df89979ba08e76a3f86c0b7406a1ba90710ade6 Mon Sep 17 00:00:00 2001 From: Lance Ball Date: Fri, 15 Sep 2023 17:50:31 -0400 Subject: [PATCH] chore: fix `backfill-redis` Makefile target (#1685) This commit makes a minor change to the Makefile's `backfill-redis` target to output a binary named `backfill-redis`, fixing what was probably a simple copy/paste error when the target was introduced. Signed-off-by: Lance Ball --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9c2467b87..4904ad9a6 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,7 @@ rekor-server: $(SRCS) CGO_ENABLED=0 go build -trimpath -ldflags "$(SERVER_LDFLAGS)" -o rekor-server ./cmd/rekor-server backfill-redis: $(SRCS) - CGO_ENABLED=0 go build -trimpath -ldflags "$(SERVER_LDFLAGS)" -o rekor-server ./cmd/backfill-redis + CGO_ENABLED=0 go build -trimpath -ldflags "$(SERVER_LDFLAGS)" -o backfill-redis ./cmd/backfill-redis test: go test ./...