Skip to content

Commit edb7d4b

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

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
@@ -70,7 +70,7 @@ jobs:
7070
- name: Install PHP APCu extension
7171
run: |
7272
printf "\n" | pecl install apcu
73-
echo 'extension=apcu.so' > $(php --ini | grep 'Scan for' | sed 's|.* \(/.*\)$|\1|')/apcu.ini
73+
echo 'extension=apcu.so' > $(php --ini | grep 'Scan for' | sed -e 's/"//g' -e 's|.* \(/.*\)$|\1|')/apcu.ini
7474
if: ${{ matrix.apcu }}
7575

7676
- name: Build

0 commit comments

Comments
 (0)