Skip to content

Commit

Permalink
fix the conditional to install the db
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Feb 9, 2024
1 parent 3c02e81 commit 0cb334c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/install-wp-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ WP_TESTS_DIR=${WP_TESTS_DIR-$TMPDIR/wordpress-tests-lib}
WP_CORE_DIR=${WP_CORE_DIR-$TMPDIR/wordpress/}

# Maybe install the database.
if [ -n "$SKIP_DB" ]; then
if [ -z "$SKIP_DB" ]; then
install_db "$DB_NAME" "$DB_USER" "$DB_PASS" "$DB_HOST"
fi

Expand Down

0 comments on commit 0cb334c

Please sign in to comment.