Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Farning <dfarning@gmail.com>2009-02-18 14:18:00 (GMT)
committer David Farning <dfarning@gmail.com>2009-03-21 03:14:22 (GMT)
commit59d8eead247e3f6bb9577d613a4add1816a78682 (patch)
tree536d556b04ebcdc5ddfc91cb42604351717a9a62
parent7d05cbbfcd9a443941564b66064be7e2b4fe3ede (diff)
Fix clean.py to correctly delete stale .mo files
-rwxr-xr-xbin/clean.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/clean.sh b/bin/clean.sh
index 8bcc058..7f377ee 100755
--- a/bin/clean.sh
+++ b/bin/clean.sh
@@ -15,7 +15,7 @@ rm -f webroot/css/style.min.css
# Remove all .mo files
# Not doing this probably wouldn't cause a conflict, but better to be safe
-find locale/ -name *.mo -exec rm -f {} \;
+find locale/ -name *.mo -delete
echo "Done"