We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f096aa commit 490535cCopy full SHA for 490535c
1 file changed
features/config-create.feature
@@ -167,7 +167,9 @@ Feature: Create a wp-config file
167
And a find-socket.php file:
168
"""
169
<?php
170
- if ( file_exists( '/var/run/mysqld/mysqld.sock' ) ) {
+ if ( file_exists( '/tmp/mysqld.sock' ) ) {
171
+ echo '/tmp/mysqld.sock';
172
+ } else if ( file_exists( '/var/run/mysqld/mysqld.sock' ) ) {
173
echo '/var/run/mysqld/mysqld.sock';
174
} else if ( file_exists( '/tmp/mysql.sock' ) ) {
175
echo '/tmp/mysql.sock';
0 commit comments