aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2025-04-03 20:30:06 -0300
committerFlorian Fischer <florian.fischer@muhq.space>2025-08-20 15:57:13 +0200
commit90fea2a27fc2c3764da2ed05321ab2f731872bc6 (patch)
tree96f6e18c104c8472c66e8756ad7d51370e99ec42
parent1917e84cd52771ebede72cb4d5df8d08b9f2d2cf (diff)
downloadmuhqs-game-90fea2a27fc2c3764da2ed05321ab2f731872bc6.tar.gz
muhqs-game-90fea2a27fc2c3764da2ed05321ab2f731872bc6.zip
explicitly use bash as shell
-rw-r--r--go/Makefile2
-rw-r--r--html/Makefile1
2 files changed, 3 insertions, 0 deletions
diff --git a/go/Makefile b/go/Makefile
index 8442dfa9..8bae628a 100644
--- a/go/Makefile
+++ b/go/Makefile
@@ -1,5 +1,7 @@
PACKAGES := assets game server client dummy-ui
+SHELL := bash
+
APPS := server client dummy-ui
OBJS := $(foreach app,$(APPS),$(app)/$(app))
WASM := client/client.wasm webtools/webtools.wasm
diff --git a/html/Makefile b/html/Makefile
index 9188c4a5..25997e88 100644
--- a/html/Makefile
+++ b/html/Makefile
@@ -1,4 +1,5 @@
VERBOSE ?= @
+SHELL := bash
HTML_TEMPLATE := template.html
PANDOC_FLAGS := -f markdown --embed-resources --standalone --template=$(HTML_TEMPLATE)