From 4bc546e7f58e93dad67a6b263ba84a68a50c0aef Mon Sep 17 00:00:00 2001 From: desrosj Date: Fri, 18 Oct 2024 12:37:20 +0000 Subject: [PATCH] Build/Test Tools: Change commands used for the copying `.env.example` file. This switches from using the `test`/`cp` commands when copying the `.env.example` file to using `node:fs`. `test` and `cp` are not available on Windows machines. This also adds the `.env` file to the `svn:ignore` list to prevent it from being committed accidentally. Follow up to [59038]. Props afercia, Clorith, poena. Fixes #52668. Built from https://develop.svn.wordpress.org/trunk@59249 git-svn-id: http://core.svn.wordpress.org/trunk@58641 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 8b9e5a0aa6..580e389ad2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-beta3-59248'; +$wp_version = '6.7-beta3-59249'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.