From 2847b2125ed4e981174736540a70acd111bcf29c Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Mon, 8 Nov 2010 00:13:23 +0100 Subject: [task/phing-build] Correct the path for update package patch files. PHPBB3-9849 --- build/package.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'build/package.php') diff --git a/build/package.php b/build/package.php index 2615d983b2..4ce644e8ca 100755 --- a/build/package.php +++ b/build/package.php @@ -42,7 +42,10 @@ if (sizeof($package->old_packages)) $package->begin_status('Parsing patch/diff files for phpBB-' . $dest_package_filename . $package->get('new_version_number')); // Parse this diff to determine file changes from the checked versions and save them - $diff_file_changes[$_package_name] = $package->collect_diff_files($dest_package_filename, $_package_name); + $diff_file_changes[$_package_name] = $package->collect_diff_files( + $package->get('patch_directory') . '/phpBB-' . $dest_package_filename . $package->get('new_version_number') . '.patch', + $_package_name + ); } // Now put those files determined within the correct directories -- cgit v1.2.1