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)
Thu Jan 12 17:30:35 -0800 2006
commit  b2a79cc3bf5b9945144ddcdebcdafaa893950249
tree    fd5954eab55ecb76b8a408882be84c7b211320e2
parent  e6ec90832804e0c443b8aa2e57027c9c5cadf12e
cmsmadesimple-2-0 / release-cleanup.sh
100755 47 lines (41 sloc) 0.978 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/sh
 
echo ------------------------------------
echo Running Cleanup Script
echo ------------------------------------
 
sh autogen.sh
 
cd admin/lang
perl findmissing.pl
cd ../..
 
rm -fr CHECKLIST
rm -fr build
rm -fr config.php
rm -fr autogen.sh
rm -fr mpd.sql
rm -fr mysql.sql
rm -fr makedoc.sh
rm -fr cleardb.sh
rm -fr generatedump.php
rm -fr images/cms/*.svg
rm -fr admin/lang/bg_BG.nls.php
#rm -fr tmp/cache/*
#rm -fr tmp/templates_c/*
rm -fr svn-propset
rm -fr svn-propset-file
rm -fr find-mime
rm -fr admin/lang/*.sh
rm -fr admin/lang/*.pl
rm -fr modules/LinkBlog
rm -fr modules/HTMLArea
rm -fr modules/PngTransparencyIE
rm -fr modules/PermaLinks
rm -fr modules/ProtectEmail
rm -fr modules/faqX
rm -fr modules/FCKeditor
rm -fr modules/TinyMCE
rm -fr scripts
find . -depth -type d -name .svn -exec rm -fr {} \;
find . -type d -exec chmod 775 {} \;
rm -fr release-cleanup.sh
 
echo ------------------------------------
echo Done!
echo ------------------------------------