summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-06-02 22:23:02 +0000
committerDries Buytaert <dries@buytaert.net>2003-06-02 22:23:02 +0000
commit68ca58e922395b2379b00a870ec77965c00e971a (patch)
tree10f1a14bc37fdcf9930afdf5a16a156eba0a6ea8 /scripts
parentc2ca3c62bd21ac9d35bb2a8de9031792a38fe71a (diff)
downloadbrdo-68ca58e922395b2379b00a870ec77965c00e971a.tar.gz
brdo-68ca58e922395b2379b00a870ec77965c00e971a.tar.bz2
- Ignore ".eps.gz" files or Druplicon logos.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/code-clean.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/code-clean.sh b/scripts/code-clean.sh
index 3053fff1b..24509a00e 100644
--- a/scripts/code-clean.sh
+++ b/scripts/code-clean.sh
@@ -4,5 +4,5 @@ find . -name ".#*" -type f | xargs rm -f
find . -name "*.rej" -type f | xargs rm -f
find . -name "*.orig" -type f | xargs rm -f
find . -name "DEADJOE" -type f | xargs rm -f
-find . -type f | grep -v ".psp" | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".tgz" | xargs perl -wi -pe 's/\s+$/\n/'
-find . -type f | grep -v ".psp" | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".tgz" | xargs perl -wi -pe 's/\t/ /g'
+find . -type f | grep -v ".psp" | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".tgz" | grep -v "druplicon" | xargs perl -wi -pe 's/\s+$/\n/'
+find . -type f | grep -v ".psp" | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".tgz" | grep -v "druplicon" | xargs perl -wi -pe 's/\t/ /g'