1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-12-22 21:40:08 +00:00

Use generic versions by now

This commit is contained in:
Tim Düsterhus 2012-03-04 18:20:32 +01:00
parent f28b24e3ad
commit 7ac7cf79c5

View File

@ -75,9 +75,13 @@
EOT; EOT;
chdir('..'); chdir('..');
passthru('tar cvf timwolla.wcf.chat.tar * --exclude=file --exclude=template --exclude=acptemplate --exclude=build.php', $code); file_put_contents('package.xml.bak', file_get_contents('package.xml'));
file_put_contents('package.xml', str_replace('</version>', '.'.time().'</version>', file_get_contents('package.xml')));
passthru('tar cvf timwolla.wcf.chat.tar * --exclude=*.bak --exclude=file --exclude=template --exclude=acptemplate --exclude=build.php', $code);
file_put_contents('package.xml', file_get_contents('package.xml.bak'));
if ($code != 0) exit($code); if ($code != 0) exit($code);
if (file_exists('package.xml.bak')) unlink('package.xml.bak');
if (file_exists('file.tar')) unlink('file.tar'); if (file_exists('file.tar')) unlink('file.tar');
if (file_exists('template.tar')) unlink('template.tar'); if (file_exists('template.tar')) unlink('template.tar');
if (file_exists('acptemplate.tar')) unlink('acptemplate.tar'); if (file_exists('acptemplate.tar')) unlink('acptemplate.tar');