2010-12-16 Miguel de Dios <miguel.dedios@artica.es>

* DEBIAN/make_deb_package.sh: added source code for to delete ".svn" dirs
	when to make the deb package.
	
	Fixes: #3119594, #3115604



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3660 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-12-16 16:18:15 +00:00
parent 8ecc1abbbe
commit ab1138ff59
2 changed files with 28 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2010-12-16 Miguel de Dios <miguel.dedios@artica.es>
* DEBIAN/make_deb_package.sh: added source code for to delete ".svn" dirs
when to make the deb package.
Fixes: #3119594, #3115604
2010-12-15 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, extras/pandoradb_migrate_v3.1_to_v3.2.sql: increment the

View File

@ -96,6 +96,27 @@ then
rm -Rf temp_package/var/www/pandora_console/pandora_console.spec
chmod 755 -R temp_package/DEBIAN
touch temp_package/var/www/pandora_console/include/config.php
echo "Remove the SVN files and other temp files."
for item in `find temp_package`
do
echo -n "."
echo $item | grep "svn" > /dev/null
#last command success
if [ $? -eq 0 ]
then
rm -rf $item
fi
echo $item | grep "make_deb_package.sh" > /dev/null
#last command success
if [ $? -eq 0 ]
then
rm -rf $item
fi
done
echo "END"
echo "Calculate md5sum for md5sums package control file."
for item in `find temp_package`