Skip to content

Commit f9fde86

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/linux.yaml

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

8080
- name: Build

0 commit comments

Comments
 (0)