Skip to content

Commit

Permalink
chore: fix backfill-redis Makefile target (#1685)
Browse files Browse the repository at this point in the history
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 <lball@redhat.com>
  • Loading branch information
lance authored Sep 15, 2023
1 parent 2c202c8 commit 9df8997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./...
Expand Down

0 comments on commit 9df8997

Please sign in to comment.