diff --git a/Makefile b/Makefile index 4bb3c27..4859fb9 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ test: build-examples: for dir in $(shell find ./_examples -maxdepth 1 -type d); do \ if [ $$dir = "./_examples" ]; then continue; fi; \ + echo 'build:' $$dir; \ cd $$dir && GOOS=js GOARCH=wasm go build -o ./build/app.wasm; \ cd ../../; \ - done \ No newline at end of file + done