diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 17:03:21 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 17:03:35 +0800 |
commit | 6ef0624346203591e00270f4f595c5f648278547 (patch) | |
tree | 168eb179cd478c8e274a5536227ca9327832e16d /tools | |
parent | 52762cb355196085d56d3ae7a79519a6d1bcd899 (diff) | |
download | gsoc2013-empathy-6ef0624346203591e00270f4f595c5f648278547.tar gsoc2013-empathy-6ef0624346203591e00270f4f595c5f648278547.tar.gz gsoc2013-empathy-6ef0624346203591e00270f4f595c5f648278547.tar.bz2 gsoc2013-empathy-6ef0624346203591e00270f4f595c5f648278547.tar.lz gsoc2013-empathy-6ef0624346203591e00270f4f595c5f648278547.tar.xz gsoc2013-empathy-6ef0624346203591e00270f4f595c5f648278547.tar.zst gsoc2013-empathy-6ef0624346203591e00270f4f595c5f648278547.zip |
disable tab coding style check for now
Diffstat (limited to 'tools')
-rw-r--r-- | tools/check-whitespace.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/check-whitespace.sh b/tools/check-whitespace.sh index 534833126..84356f20b 100644 --- a/tools/check-whitespace.sh +++ b/tools/check-whitespace.sh @@ -8,10 +8,11 @@ then fail=1 fi -if grep -n ' ' "$@" -then - echo "^^^ The above files contain tabs" - fail=1 -fi +# TODO: enable tab checking once all Empathy switched to TP coding style +#if grep -n ' ' "$@" +#then +# echo "^^^ The above files contain tabs" +# fail=1 +#fi exit $fail |