Skip to content

Commit 6cc3d0d

Browse files
committed
fix(ci): update venv path check in homebrew.yml workflow
- Change venv test location from libexec/venv to var/mfc/venv - Matches updated formula that stores venv outside keg
1 parent a9dc2a0 commit 6cc3d0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/homebrew.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ jobs:
130130
echo " ✓ Installation structure verified"
131131
132132
echo "3. Checking Python venv..."
133-
test -d $(brew --prefix)/Cellar/mfc/*/libexec/venv
134-
test -f $(brew --prefix)/Cellar/mfc/*/libexec/venv/bin/python
135-
test -f $(brew --prefix)/Cellar/mfc/*/libexec/venv/bin/pip
133+
test -d $(brew --prefix)/var/mfc/venv
134+
test -f $(brew --prefix)/var/mfc/venv/bin/python
135+
test -f $(brew --prefix)/var/mfc/venv/bin/pip
136136
echo " ✓ Python venv exists"
137137
138138
echo "4. Checking examples..."

0 commit comments

Comments
 (0)