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