From b7286eeeb682d968ef272527d9a3d262937db337 Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Sun, 1 Feb 2026 18:17:37 +0100 Subject: [PATCH] fix: use explicit bash path in makefile scripts Specify full path to bash interpreter for version.sh and deploy.sh scripts in makefile to ensure consistent execution across different environments and avoid potential PATH issues. --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 70921c7..3e8f55a 100644 --- a/makefile +++ b/makefile @@ -7,10 +7,10 @@ prep: git submodule foreach --recursive bash -c "git checkout \$$(git remote show origin | grep HEAD | sed 's/.*\: //'); git pull" build: prep - ./version.sh + /usr/bin/env bash version.sh deploy: - ./deploy.sh + /usr/bin/env bash deploy.sh run: prep hugo server