From 7a9a63b2198d9610268c8d4a6440609788a82c26 Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 24 Dec 2025 10:12:10 -0500 Subject: [PATCH] fix: update wasm build rule to include all Go files in the directory Signed-off-by: Deluan --- plugins/examples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/examples/Makefile b/plugins/examples/Makefile index f84d469d4..eddcd87ab 100644 --- a/plugins/examples/Makefile +++ b/plugins/examples/Makefile @@ -10,7 +10,7 @@ all: $(PLUGINS:%=%.wasm) clean: rm -f $(PLUGINS:%=%.wasm) -%.wasm: %/main.go %/go.mod +%.wasm: %/*.go %/go.mod ifdef TINYGO cd $* && tinygo build -target wasip1 -buildmode=c-shared -o ../$@ . else