Skip to content

Commit

Permalink
Revert "Replace > with > in is-installed.md"
Browse files Browse the repository at this point in the history
This reverts commit 59a6c24.
  • Loading branch information
EarthlingDavey committed Oct 28, 2024
1 parent 59a6c24 commit bea7173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/core/is-installed.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bea7173

Please sign in to comment.