Codebase list telepathy-glib / upstream/0.6.0 check-whitespace.sh
upstream/0.6.0

Tree @upstream/0.6.0 (Download .tar.gz)

check-whitespace.sh @upstream/0.6.0raw · history · blame

#!/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