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-04-04 09:04:55 -0300
commited6c3f4c09f56b0f3ab2476c3fd2e56dc00826e1 (patch)
treed3f2d6072062404c2387f35eed4acfd5cc966ead
parentf72d79e592d4cd224e394ac9cc93a21aa65a4c59 (diff)
downloadmuhqs-game-ed6c3f4c09f56b0f3ab2476c3fd2e56dc00826e1.tar.gz
muhqs-game-ed6c3f4c09f56b0f3ab2476c3fd2e56dc00826e1.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)