Skip to content

Commit

Permalink
Fix more quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
nylen committed Sep 20, 2019
1 parent 15cca78 commit 3f6e690
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/lando-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,23 +50,23 @@ if [ "$WP_MULTISITE" = true ]; then
--path=test/site/ \
--subdomains \
--url="$wp_url" \
'--title="My Test Site One"' \
--title="My Test Site One" \
--admin_user="admin" \
--admin_password="admin" \
--admin_email="[email protected]" \
--skip-email

# https://wordpress.stackexchange.com/a/299114/64369
config_set ADMIN_COOKIE_PATH '/'
config_set COOKIE_DOMAIN "''"
config_set COOKIEPATH "''"
config_set SITECOOKIEPATH "''"
config_set ADMIN_COOKIE_PATH /
config_set COOKIE_DOMAIN ''
config_set COOKIEPATH ''
config_set SITECOOKIEPATH ''

site_two_id=$(
lando wp site create \
--path=test/site/ \
--slug=two \
'--title="My Test Site Two"' \
--title="My Test Site Two" \
--porcelain \
| tr -cd '[0-9]'
)
Expand All @@ -93,7 +93,7 @@ else # single site install
lando wp core install \
--path=test/site/ \
--url="$wp_url" \
'--title="My Test Site"' \
--title="My Test Site" \
--admin_user="admin" \
--admin_password="admin" \
--admin_email="[email protected]" \
Expand Down

0 comments on commit 3f6e690

Please sign in to comment.