Skip to content

Commit e718c0a

Browse files
committed
Guard against word splitting due to spaces
1 parent 6d37c07 commit e718c0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.env.default

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ export WPT_DB_PASSWORD=""
3333
export WPT_DB_HOST=""
3434

3535
# (Optionally) set a custom table prefix to permit concurrency against the same database.
36-
export WPT_TABLE_PREFIX=${WPT_TABLE_PREFIX-wptests_}
36+
export WPT_TABLE_PREFIX="${WPT_TABLE_PREFIX-wptests_}"
3737

3838
# (Optionally) define the PHP executable to be called
39-
export WPT_PHP_EXECUTABLE=${WPT_PHP_EXECUTABLE-php}
39+
export WPT_PHP_EXECUTABLE="${WPT_PHP_EXECUTABLE-php}"
4040

4141
# (Optionally) define the PHPUnit command execution call.
4242
# Use if `php phpunit.phar` can't be called directly for some reason.

0 commit comments

Comments
 (0)