From b46144c551b04f59ed4a0fe51ebc9f243e7e6adf Mon Sep 17 00:00:00 2001 From: Padreug Date: Tue, 5 May 2026 20:45:51 +0200 Subject: [PATCH] start-regtest: use env-based bash shebang Find bash via PATH rather than hard-coding /bin/bash, for systems (NixOS, macOS w/ homebrew bash) where the system bash isn't current. Co-Authored-By: Claude Opus 4.7 (1M context) --- start-regtest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start-regtest b/start-regtest index 82a5ad6..4dc351a 100755 --- a/start-regtest +++ b/start-regtest @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash print_success() { printf "\033[;1;32mPASSED\033[;0m $1\n" }