From f995943832864f8031171bbef94e75bc67206908 Mon Sep 17 00:00:00 2001 From: Jan S Date: Sun, 4 Jan 2026 03:39:59 +0100 Subject: [PATCH] fix: do not hardcode bash path (#1358) Co-authored-by: houseme --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ce2793d3..42c9949c 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ NUM_CORES := $(shell nproc 2>/dev/null || sysctl -n hw.ncpu) MAKEFLAGS += -j$(NUM_CORES) -l$(NUM_CORES) MAKEFLAGS += --silent -SHELL:= /bin/bash +SHELL := $(shell which bash) .SHELLFLAGS = -eu -o pipefail -c DOCKER_CLI ?= docker