From 56dfed874fac109efca41b3136823a47dd4f157d Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Thu, 20 Oct 2016 22:24:40 +0000 Subject: [PATCH] Build/Test Tools: Allow Minimal Builds Builds can hang or get very slow on copy when you have alot of files. Alot of files can suddenly appear when you are developing new themes or plugins. Often, it's nice to have a minimal build, especially if you are preparing a commit. This adds a new flag `--minimal-copy` that can be added to any task which does a copy. These tasks include build, test, and copy. This flag will cause no plugins to be copied and only the twenty series of default themes to be copied. Everything else remains the same. Fixes #38423. Built from https://develop.svn.wordpress.org/trunk@38848 git-svn-id: http://core.svn.wordpress.org/trunk@38791 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 d11fb25124..dab5826e77 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38847'; +$wp_version = '4.7-alpha-38848'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.