public
Description: Git mirror of the CMS Made Simple 2.0 rewrite
Homepage: http://cmsmadesimple.org
Clone URL: git://github.com/tedkulp/cmsmadesimple-2-0.git
tedkulp (author)
Sun Apr 27 06:49:35 -0700 2008
commit  933f96dc6ea0ffe68cf5453b3ff0e0c56ba23dc2
tree    90f0e50646314abccbe28c6ec2c55869c87b174d
parent  7f2994736eebb73ec741543b244727f17e888a2b
cmsmadesimple-2-0 / release-cleanup.sh
100755 28 lines (23 sloc) 0.62 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
 
echo ------------------------------------
echo Running Cleanup Script
echo ------------------------------------
 
sh autogen.sh
 
rm -fr build
rm -fr config.php
rm -fr autogen.sh
rm -fr makedoc.sh
rm -fr images/cms/*.svg
rm -fr admin/editconfig.php
rm -fr lib/adodb
rm -fr lib/preview.functions.php
rm -fr test
rm -fr command.php
rm -fr lib/pear/php_shell
find . -depth -type d -name .svn -exec rm -fr {} \;
find . -type d -exec chmod 775 {} \;
find . -type f -name "*.php" chmod -x {} \;
rm -fr release-cleanup.sh
 
echo ------------------------------------
echo Done!
echo ------------------------------------