urbit/sh/test-whitespace

15 lines
311 B
Plaintext
Raw Normal View History

2020-01-03 14:45:36 +03:00
#!/usr/bin/env bash
whitespace=$(find . \
\( -path ./.git -o \
-path ./nix -o \
-path ./bin \) -prune \
-o -type f -exec egrep -lI " +$" {} \;);
if [ ! -z "$whitespace" ]
then
echo "found trailing whitespace in:";
echo "$whitespace";
exit 1;
fi