From 99db87d361135914e9ca682e5b9feceaea8ad5d1 Mon Sep 17 00:00:00 2001 From: syumai Date: Thu, 25 Apr 2024 08:50:01 +0900 Subject: [PATCH] specify SHELL in Makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4859fb9..9bac770 100644 --- a/Makefile +++ b/Makefile @@ -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: