GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

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
commit  325c55c6309b98c3e310d2a5a812d50d95ba1db7
tree    c5849f4ed8ccd949819a093c31dc33f7b666adfa
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 ------------------------------------