From a308bfd22913e25da045d07d8754d98a9e0be9ce Mon Sep 17 00:00:00 2001 From: Phil Tyler Date: Thu, 19 Oct 2023 15:20:55 -0700 Subject: [PATCH] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index ba82348..12c0b70 100644 --- a/README.md +++ b/README.md @@ -62,8 +62,7 @@ As of 1.4.1 the `add-index`, `primary-key-add` and `primary-key-revert` commands However, you can script this process in bash by getting a list of sites and looping over them: ```bash -for site in $(wp site list --field=url); -then +for site in $(wp site list --field=url); do wp pantheon session add-index --url=$site done ```