[Joomla-commits] r22964 - development/trunk/build

6 views
Skip to first unread message

githu...@jcode001.directrouter.com

unread,
Mar 29, 2012, 2:56:23 PM3/29/12
to joomla-...@joomlacode.org
Author: github_bot
Date: 2012-03-29 13:56:23 -0500 (Thu, 29 Mar 2012)
New Revision: 22964

Modified:
development/trunk/build/build.php
Log:
Merge branch 'master' of github.com:joomla/joomla-cms

Modified: development/trunk/build/build.php
===================================================================
--- development/trunk/build/build.php 2012-03-29 18:46:25 UTC (rev 22963)
+++ development/trunk/build/build.php 2012-03-29 18:56:23 UTC (rev 22964)
@@ -69,7 +69,7 @@

// Only do 0 and most recent versions. Skip other update versions.
if ($num != 0 && ($num != $release - 1)) {
- echo "skipping upgrade for ." . $num;
+ echo "skipping upgrade for ." . $num . "\n";
continue;
}

@@ -80,14 +80,23 @@

// $newfile will hold the array of files to include in diff package
$newfile = array();
+ $deletedFiles = array();
$files = file('diffdocs/'.$version.'.'.$num);

// Loop through and add all files except: tests, installation, build, .git, or docs
foreach($files AS $file)
{
if(substr($file, 2, 5) != 'tests' && substr($file, 2, 12) != 'installation' && substr($rawfile,2,5) != 'build'
- && substr($file, 2, 4) != '.git' && substr($file, 2, 4) != 'docs' && substr($file, 0, 1) != 'D') {
- $newfile[] = substr($file, 2);
+ && substr($file, 2, 4) != '.git' && substr($file, 2, 4) != 'docs' )
+ {
+ if (substr($file, 0, 1) != 'D')
+ {
+ $newfile[] = substr($file, 2);
+ }
+ else
+ {
+ $deletedFiles[] = substr($file,2);
+ }
}
}

@@ -118,6 +127,7 @@

// Write the file list to a text file.
file_put_contents('diffconvert/'.$version.'.'.$num, $newfile);
+ file_put_contents('diffconvert/'.$version.'.'.$num.'-deleted', $deletedFiles);

// Create the diff archive packages using the file name list.
system('tar --create --bzip2 --no-recursion --directory '.$full.' --file packages'.$version.'/Joomla_'.$version.'.'.$num.'_to_'.$full.'-Stable-Patch_Package.tar.bz2 --files-from diffconvert/'.$version.'.'.$num . '> /dev/null');

_______________________________________________
Joomla-commits mailing list
Joomla-...@joomlacode.org
http://joomlacode.org/mailman/listinfo/joomla-commits

Reply all
Reply to author
Forward
0 new messages