aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-06-10 15:10:03 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-07-13 09:57:56 +0200
commit129e393b66125ed6b19cbc0a8defbefabf5cd5ca (patch)
treeaa3aedb0b8bcfe2e8817825792128145ea840180 /build
parent14ff1ef540f71e765ceeaa53b87ad62e4c8d8a40 (diff)
downloadforums-129e393b66125ed6b19cbc0a8defbefabf5cd5ca.tar
forums-129e393b66125ed6b19cbc0a8defbefabf5cd5ca.tar.gz
forums-129e393b66125ed6b19cbc0a8defbefabf5cd5ca.tar.bz2
forums-129e393b66125ed6b19cbc0a8defbefabf5cd5ca.tar.xz
forums-129e393b66125ed6b19cbc0a8defbefabf5cd5ca.zip
[ticket/11574] Include vendor into update packages
PHPBB3-11574
Diffstat (limited to 'build')
-rwxr-xr-xbuild/package.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/build/package.php b/build/package.php
index 48f42b3572..eef6765af6 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');