You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
351 B
8 lines
351 B
7 months ago
|
#!/bin/bash
|
||
|
|
||
|
result=$(find car-ui-lib/ -type f \( -iname \*.java -o -iname \*.xml \) -a \( ! -wholename \*/.idea/\* \) \( ! -wholename \*/build/\* \) -print0 | xargs -0 -L1 bash -c 'test "$(tail -c 1 "$0")" && echo "No new line at end of $0"')
|
||
|
if [ \( ! -z "$result" \) -o \( $(echo "$result" | wc -l) -gt 1 \) ]
|
||
|
then
|
||
|
echo "$result" && false;
|
||
|
fi
|