diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/build.xml | 2 | ||||
-rwxr-xr-x | build/build_diff.php | 2 | ||||
-rwxr-xr-x | build/package.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/build/build.xml b/build/build.xml index 018f7b91a2..063f1017fb 100644 --- a/build/build.xml +++ b/build/build.xml @@ -2,7 +2,7 @@ <project name="phpBB" description="The phpBB forum software" default="all" basedir="../"> <!-- a few settings for the build --> - <property name="newversion" value="3.0.13-dev" /> + <property name="newversion" value="3.1.0-dev" /> <property name="prevversion" value="3.0.12" /> <property name="olderversions" value="3.0.2, 3.0.3, 3.0.4, 3.0.5, 3.0.6, 3.0.7, 3.0.7-PL1, 3.0.8, 3.0.9, 3.0.10, 3.0.11" /> <!-- no configuration should be needed beyond this point --> diff --git a/build/build_diff.php b/build/build_diff.php index d264ecf493..68bac65a66 100755 --- a/build/build_diff.php +++ b/build/build_diff.php @@ -407,5 +407,3 @@ function run_command($command) $result = trim(`$command`); echo "\n- Command Run: " . $command . "\n"; } - -?> diff --git a/build/package.php b/build/package.php index 22ea4e52af..d05448dfb4 100755 --- a/build/package.php +++ b/build/package.php @@ -121,6 +121,7 @@ if (sizeof($package->old_packages)) $package->run_command('cp -Rp ' . $package->get('dest_dir') . '/docs ' . $dest_filename_dir); $package->run_command('cp -Rp ' . $package->get('dest_dir') . '/install ' . $dest_filename_dir); + $package->run_command('cp -Rp ' . $package->get('dest_dir') . '/vendor ' . $dest_filename_dir); $package->run_command('mkdir ' . $dest_filename_dir . '/install/update'); $package->run_command('mkdir ' . $dest_filename_dir . '/install/update/old'); @@ -256,6 +257,7 @@ $update_info = array( // Copy the install files to their respective locations $package->run_command('cp -Rp ' . $package->get('dest_dir') . '/docs ' . $package->get('patch_directory')); $package->run_command('cp -Rp ' . $package->get('dest_dir') . '/install ' . $package->get('patch_directory')); + $package->run_command('cp -Rp ' . $package->get('dest_dir') . '/vendor ' . $package->get('patch_directory')); // Remove some files chdir($package->get('patch_directory') . '/install'); |