diff --git a/commands/core/is-installed.md b/commands/core/is-installed.md index b1c6f90c..f22aed5e 100644 --- a/commands/core/is-installed.md +++ b/commands/core/is-installed.md @@ -13,14 +13,14 @@ Determines whether WordPress is installed by checking if the standard database t # Bash script for checking if WordPress is not installed. - if ! wp core is-installed 2>/dev/null; then + if ! wp core is-installed 2>/dev/null; then # WP is not installed. Let's try installing it. wp core install fi # Bash script for checking if WordPress is installed, with fallback. - if wp core is-installed 2>/dev/null; then + if wp core is-installed 2>/dev/null; then # WP is installed. Let's do some things we should only do in a confirmed WP environment. wp core verify-checksums else