From 2684d2eae2971905fe175ecd55740b00199b9354 Mon Sep 17 00:00:00 2001 From: Alex Meijer Date: Thu, 10 Oct 2024 15:36:50 -0400 Subject: [PATCH] fix harness to support multiple plugins Signed-off-by: Alex Meijer --- 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