Skip to content

Commit d07e992

Browse files
committed
fix(ci): remove quotes from PHP ini path parsing in APCu installation
1 parent 03d07dc commit d07e992

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
@@ -98,7 +98,7 @@ jobs:
9898
- name: Install PHP APCu extension
9999
run: |
100100
printf "\n" | pecl install apcu
101-
echo 'extension=apcu.so' > $(php --ini | grep 'Scan for' | sed 's|.* \(/.*\)$|\1|')/apcu.ini
101+
echo 'extension=apcu.so' > $(php --ini | grep 'Scan for' | sed -e 's/"//g' -e 's|.* \(/.*\)$|\1|')/apcu.ini
102102
if: ${{ matrix.apcu }}
103103

104104
- name: Build

0 commit comments

Comments
 (0)