We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
conf.d
1 parent 3af9f92 commit 4aa4f74Copy full SHA for 4aa4f74
.github/actions/build-mac/action.yml
@@ -40,9 +40,9 @@ runs:
40
php --ini
41
cp ./modules/zephir_parser.so "$(php -r 'echo ini_get("extension_dir");')/zephir_parser.so"
42
if [ "${{ matrix.ts }}" = "ts" ]; then
43
- ls -la /opt/homebrew/etc/php/${{ matrix.php }}-zts
+ mkdir -p /opt/homebrew/etc/php/${{ matrix.php }}-zts/conf.d
44
echo "extension=zephir_parser.so" > /opt/homebrew/etc/php/${{ matrix.php }}-zts/conf.d/ext-zephir_parser.ini
45
else
46
- ls -la /opt/homebrew/etc/php/${{ matrix.php }}
+ mkdir -p /opt/homebrew/etc/php/${{ matrix.php }}/conf.d
47
echo "extension=zephir_parser.so" > /opt/homebrew/etc/php/${{ matrix.php }}/conf.d/ext-zephir_parser.ini
48
fi
0 commit comments