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>
|
2010-12-15 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* pandoradb.sql, extras/pandoradb_migrate_v3.1_to_v3.2.sql: increment the
|
* pandoradb.sql, extras/pandoradb_migrate_v3.1_to_v3.2.sql: increment the
|
||||||
|
|
|
@ -97,6 +97,27 @@ then
|
||||||
chmod 755 -R temp_package/DEBIAN
|
chmod 755 -R temp_package/DEBIAN
|
||||||
touch temp_package/var/www/pandora_console/include/config.php
|
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."
|
echo "Calculate md5sum for md5sums package control file."
|
||||||
for item in `find temp_package`
|
for item in `find temp_package`
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in New Issue