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:
parent
8ecc1abbbe
commit
ab1138ff59
|
@ -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
|
||||
|
|
|
@ -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`
|
||||
|
|
Loading…
Reference in New Issue