aboutsummaryrefslogtreecommitdiffstats
path: root/tools/check-whitespace.sh
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2009-03-17 02:38:35 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-03-17 02:38:35 +0800
commit89c57232e6091d86ed79f7a5c2010011f0e2bb11 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /tools/check-whitespace.sh
parent2baaa7ae3c3ac983a8019cd93a73426c7e081735 (diff)
downloadgsoc2013-empathy-EMPATHY_2_26_0_svn2702.tar
gsoc2013-empathy-EMPATHY_2_26_0_svn2702.tar.gz
gsoc2013-empathy-EMPATHY_2_26_0_svn2702.tar.bz2
gsoc2013-empathy-EMPATHY_2_26_0_svn2702.tar.lz
gsoc2013-empathy-EMPATHY_2_26_0_svn2702.tar.xz
gsoc2013-empathy-EMPATHY_2_26_0_svn2702.tar.zst
gsoc2013-empathy-EMPATHY_2_26_0_svn2702.zip
Wrongly createdEMPATHY_2_26_0_svn2702
svn path=/tags/EMPATHY_2_26_0; revision=2701
Diffstat (limited to 'tools/check-whitespace.sh')
-rw-r--r--tools/check-whitespace.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/check-whitespace.sh b/tools/check-whitespace.sh
deleted file mode 100644
index 534833126..000000000
--- a/tools/check-whitespace.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-fail=0
-
-if grep -n ' $' "$@"
-then
- echo "^^^ The above files contain unwanted trailing spaces"
- fail=1
-fi
-
-if grep -n ' ' "$@"
-then
- echo "^^^ The above files contain tabs"
- fail=1
-fi
-
-exit $fail