From cd03abe08bbcff7b971054c77c0e1459efe1572c Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Mon, 25 May 2015 20:28:17 +0200 Subject: [PATCH] Travis: Add a check for trailing whitespace before any actual compilation. --- .travis-build.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis-build.sh b/.travis-build.sh index 1028a1573..14dfd64d8 100755 --- a/.travis-build.sh +++ b/.travis-build.sh @@ -3,6 +3,12 @@ set -e set -x +if grep -r '\s$' src *.yml *.txt *.md Doxyfile .gitignore .gitmodules .travis* dist/*.desktop \ + dist/*.svg dist/*.xml; then + echo Trailing whitespace found, aborting + exit 1 +fi + #if OS is linux or is not set if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then mkdir build && cd build