[task/phing-build] Correct the path for update package patch files.

PHPBB3-9849
This commit is contained in:
Nils Adermann 2010-11-08 00:13:23 +01:00
parent e1aff2841b
commit 2847b2125e

View file

@ -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')); $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 // 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 // Now put those files determined within the correct directories