From 2f4fc7a90e29fc264388a7e927477b296e5120e3 Mon Sep 17 00:00:00 2001 From: William Murphy Date: Wed, 18 Oct 2023 12:50:36 -0400 Subject: [PATCH] chore: fix "make build-grype" (#338) The grype main file moved into a subdirectory, and this command hadn't been updated. Signed-off-by: Will Murphy --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2bb9a46a..afe39bf1 100644 --- a/Makefile +++ b/Makefile @@ -82,7 +82,7 @@ dev: ## Get a development shell with locally editable grype, grype-db, and vunn .PHONY: build-grype build-grype: $(BIN_DIR) ## Build grype for local development - @cd $(GRYPE_PATH) && go build -o $(ABS_BIN_DIR)/grype . + @cd $(GRYPE_PATH) && go build -o $(ABS_BIN_DIR)/grype ./cmd/grype .PHONY: build-grype-db build-grype-db: $(BIN_DIR) ## Build grype-db for local development