Skip to content

Commit 48e9ef8

Browse files
committed
Fix bison path
1 parent 4950a77 commit 48e9ef8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/verify-generated-files/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
- shell: bash
66
run: |
77
set -x
8-
[[ "$OSTYPE" == "darwin"* ]] && export PATH="/usr/local/opt/bison/bin:$PATH"
8+
[[ "$OSTYPE" == "darwin"* ]] && export PATH="$(brew --prefix)/opt/bison/bin:$PATH"
99
scripts/dev/genfiles
1010
Zend/zend_vm_gen.php
1111
build/gen_stub.php -f

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
configurationParameters: --enable-debug --disable-zts
131131
- name: make
132132
run: |-
133-
export PATH="/usr/local/opt/bison/bin:$PATH"
133+
export PATH="$(brew --prefix)/opt/bison/bin:$PATH"
134134
make -j$(sysctl -n hw.logicalcpu) >/dev/null
135135
- name: make install
136136
run: sudo make install

0 commit comments

Comments
 (0)