From ad8769167a138fe6cfbd393682117d6686ed0649 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 19 Apr 2026 19:51:15 -0700 Subject: [PATCH] fix(build): ensure Homebrew tools are in PATH to fix build script (#63) --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index 57488f3..def1515 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,8 @@ #!/bin/bash set -eo pipefail +export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH" + echo "==============================================" echo " SwiftLM Build Script " echo "=============================================="