Skip to content

Commit

Permalink
Fix wp-env start for non-english core sources (#24884)
Browse files Browse the repository at this point in the history
  • Loading branch information
ixkaito authored Aug 28, 2020
1 parent 97dc776 commit e6d4483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/env/lib/wordpress.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async function configureWordPress( environment, config, spinner ) {
// Add quotes around string values to work with multi-word strings better.
value = typeof value === 'string' ? `"${ value }"` : value;
setupCommands.push(
`wp config set ${ key } ${ value }${
`wp config set ${ key } ${ value } --anchor="define( 'WP_DEBUG',"${
typeof value !== 'string' ? ' --raw' : ''
}`
);
Expand Down

0 comments on commit e6d4483

Please sign in to comment.