From f4307880998cfd8477ead93a8d9c05e325454b46 Mon Sep 17 00:00:00 2001 From: William Murphy Date: Mon, 30 Oct 2023 08:51:26 -0400 Subject: [PATCH] chore: fix cpe generation task (#2270) Signed-off-by: Will Murphy --- Taskfile.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 1b7a229fa..2b6d7d16d 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -375,8 +375,9 @@ tasks: generate-cpe-dictionary-index: desc: Generate the CPE index based off of the latest available CPE dictionary + dir: "syft/pkg/cataloger/common/cpe/dictionary" cmds: - - "go run ./cmd/cpe-dictionary-indexer/main.go" + - "go generate" ## Build-related targets #################################