summaryrefslogtreecommitdiff
path: root/tools/check-whitespace.sh
blob: c8e39c7d5313194df69282dfd72e561a212ce426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Copyright 2006-2022 Collabora Ltd.
# SPDX-License-Identifier: MIT

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