Skip to content

Commit

Permalink
@wordpress/env: Fix accidental quotes in Site Title (#20520)
Browse files Browse the repository at this point in the history
  • Loading branch information
noisysocks authored and jorgefilipecosta committed Mar 2, 2020
1 parent 84cc65b commit 42c7261
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions packages/env/lib/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,13 +449,17 @@ async function configureWordPress( environment, config ) {
// Install WordPress.
await dockerCompose.run(
environment === 'development' ? 'cli' : 'tests-cli',
`wp core install
--url=localhost:${ port }
--title='${ config.name }'
--admin_user=admin
--admin_password=password
--admin_email=wordpress@example.com
--skip-email`,
[
'wp',
'core',
'install',
`--url=localhost:${ port }`,
`--title=${ config.name }`,
'--admin_user=admin',
'--admin_password=password',
'--admin_email=wordpress@example.com',
'--skip-email',
],
options
);

Expand Down

0 comments on commit 42c7261

Please sign in to comment.