From 9ff32f3106135fa134d149229675034a93d688b6 Mon Sep 17 00:00:00 2001 From: Alex Meijer Date: Thu, 10 Oct 2024 16:35:05 -0400 Subject: [PATCH] fix harness to support multiple plugins (#39) Signed-off-by: Alex Meijer Signed-off-by: sajit --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 6278326..2620144 100644 --- a/justfile +++ b/justfile @@ -2,7 +2,7 @@ commonenv := "CGO_ENABLED=0" version := `./tools/image-tag` commit := `git rev-parse --short HEAD` -pluginPaths := `find ./pkg/plugins -type f -iname "go.mod" -print0 | xargs -0 dirname | xargs basename | tr ' ' ','` +pluginPaths := `find ./pkg/plugins -type f -iname "go.mod" -print0 | xargs -0 dirname | xargs -I{} basename {} | tr ' ' ',' | tr '\n' ','` default: just --list