From 8ba52cdf3fe1eaa4a4bf8bc5fd3220ceb8b183c9 Mon Sep 17 00:00:00 2001 From: Ron Rennick Date: Wed, 25 Aug 2021 15:46:27 -0300 Subject: [PATCH] fix two mispellings of WordPress --- tests/e2e/env/docker/wp-cli/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/env/docker/wp-cli/entrypoint.sh b/tests/e2e/env/docker/wp-cli/entrypoint.sh index b42a3cc8de6..ad7aaa18fd1 100644 --- a/tests/e2e/env/docker/wp-cli/entrypoint.sh +++ b/tests/e2e/env/docker/wp-cli/entrypoint.sh @@ -31,13 +31,13 @@ URL="http://localhost:${WORDPRESS_PORT}" if $(wp core is-installed); then - echo "Wordpress is already installed..." + echo "WordPress is already installed..." else declare -p WORDPRESS_TITLE >/dev/null declare -p WORDPRESS_LOGIN >/dev/null declare -p WORDPRESS_PASSWORD >/dev/null declare -p WORDPRESS_EMAIL >/dev/null - echo "Installing wordpress..." + echo "Installing WordPress..." wp core install \ --url=${URL} \ --title="$WORDPRESS_TITLE" \