diff options
| author | xHire <xhire@tuxportal.cz> | 2008-10-25 11:58:43 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2008-10-25 11:58:43 +0200 |
| commit | 03daa19ec574dcab59e89566a8062b60b16a8325 (patch) | |
| tree | 702273f2e42d4e483a5262f66660d8b3329e558e /clean.sh | |
| parent | 4b4a75f6ced29923777d0dd7e27fdd4bbfed800a (diff) | |
Translated all game into Czech + some small fixes
Updated scripts
Correction: "Height Score" -> "High Score"
Set right file permissions
Diffstat (limited to 'clean.sh')
| -rwxr-xr-x | clean.sh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -5,6 +5,8 @@ # remove folders find ./ -type d -name CMakeFiles -print | xargs -i rm {} -rf +# some people build Tuxanci in speacial folder +rm -rf ./build # remove cmake files find ./ \( -type f -name \*.so -print , -type f -name \*.cmake -print , -type f -name CMakeCache.txt -print , -type f -name Makefile -print \) | grep -v "./cmake" | xargs -i rm {} -f @@ -18,3 +20,6 @@ find src -name tuxanci-\* -print | xargs -i rm {} -f # remove compiled gettext files find ./ -name \*.gmo -print | xargs -i rm {} -f + +# remove temporary backup files +find ./ -type f -name \*~ -print | xargs -i rm {} -f |