From a99defd401d735543dc9c438ecb5e2b5906eb4ec Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 22 Dec 2024 20:11:07 +0200 Subject: [PATCH] Makefile will now always use bash --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b53997f..a73cae5 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +SHELL := /bin/bash + ifeq ($(PREFIX),) PREFIX := /usr/local endif @@ -35,4 +37,4 @@ run: build/stormfetch clean: rm -r build/ -.PHONY: build \ No newline at end of file +.PHONY: build