urbit/pkg/arvo/.travis/check-trailing-whitespace.sh

12 lines
213 B
Bash
Raw Normal View History

#!/bin/bash
whitespace=$(find .. -path ../.git -prune -o \
-type f -exec egrep -l " +$" {} \;);
if [ ! -z $whitespace ]
then
echo 'found trailing whitespace in:';
echo $whitespace;
exit 1;
fi