mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 18:21:34 +03:00
12 lines
213 B
Bash
12 lines
213 B
Bash
|
#!/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
|