specify SHELL in Makefile

This commit is contained in:
syumai 2024-04-25 08:50:01 +09:00
parent 617355c21b
commit 99db87d361

View File

@ -1,6 +1,8 @@
SHELL := /bin/bash
.PHONY: test
test:
@PATH=$(CURDIR)/misc/wasm:$(PATH) GOOS=js GOARCH=wasm go test ./...
@PATH=$(CURDIR)/misc/wasm:$$PATH GOOS=js GOARCH=wasm go test ./...
.PHONY: build-examples
build-examples: