mirror of
https://github.com/urbit/shrub.git
synced 2024-11-24 04:58:08 +03:00
15 lines
311 B
Plaintext
15 lines
311 B
Plaintext
|
#!/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
|