fix: added homebrew to path for git

This commit is contained in:
2026-07-06 21:06:37 +02:00
parent 10fa174388
commit 4a03fc0ba2
2 changed files with 14 additions and 1 deletions

View File

@@ -193,6 +193,9 @@ defmodule BDS.GitTest do
assert fetch_opts[:env]["GIT_TERMINAL_PROMPT"] == "0"
assert fetch_opts[:env]["GCM_INTERACTIVE"] == "never"
assert fetch_opts[:env]["GIT_SSH_COMMAND"] =~ "BatchMode=yes"
# git hooks (e.g. git-lfs pre-push) must find Homebrew tools even when the
# app is launched from Finder with a minimal PATH.
assert fetch_opts[:env]["PATH"] =~ "/opt/homebrew/bin"
end
test "fetch returns structured auth errors with provider guidance", %{project: project} do