Skip to content

Commit 4478a47

Browse files
committed
fix(ci): remove quotes from PHP ini path parsing in APCu extension setup
1 parent 9119787 commit 4478a47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
- name: Install PHP APCu extension
101101
run: |
102102
printf "\n" | pecl install apcu
103-
echo 'extension=apcu.so' > $(php --ini | grep 'Scan for' | sed 's|.* \(/.*\)$|\1|')/apcu.ini
103+
echo 'extension=apcu.so' > $(php --ini | grep 'Scan for' | sed -e 's/"//g' -e 's|.* \(/.*\)$|\1|')/apcu.ini
104104
if: ${{ matrix.apcu }}
105105

106106
- name: Build

0 commit comments

Comments
 (0)