From ef5da56382cfcef887cff57f598017256c7b797f Mon Sep 17 00:00:00 2001 From: Randy Reddig Date: Thu, 19 Dec 2024 16:04:17 +1300 Subject: [PATCH] Makefile: just use wasm-tools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It’s faster, and works with arbitrary paths. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3463e9d5..954b76ef 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ json: $(wit_files) .PHONY: $(wit_files) $(wit_files): internal/wasmtools/wasm-tools.wasm - go run ./internal/cmd/wasm-tools component wit -j --all-features $@ > $@.json + wasm-tools component wit -j --all-features $@ > $@.json # golden recompiles the .golden.wit test files. .PHONY: golden