From 9951f8d03ffd0e3c71ef0e21bab5befedcc347b7 Mon Sep 17 00:00:00 2001 From: "Diego A. Estrada Rivera" Date: Fri, 12 Jul 2024 20:38:35 -0400 Subject: [PATCH] ci(Makefile): Use system-agnostic path for bash. Change `SHELL` variable in Makefile from `/bin/bash` to `/usr/bin/env bash`. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0ff5ee82..dcb6ef0a 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see http://www.gnu.org/licenses/. -SHELL := /bin/bash +SHELL := /usr/bin/env bash #Common prefixes