1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-13 19:29:34 +00:00
cc65/.github/checks/lastline.sh

26 lines
559 B
Bash
Raw Permalink Normal View History

2022-04-16 18:00:10 +00:00
#! /bin/bash
OLDCWD=`pwd`
SCRIPT_PATH=`dirname $0`
CHECK_PATH=.
2022-04-16 18:00:10 +00:00
cd $SCRIPT_PATH/../../
nl='
'
nl=$'\n'
r1="${nl}$"
2022-04-17 23:06:35 +00:00
FILES=`find $CHECK_PATH -type f \( -name \*.inc -o -name Makefile -o -name \*.cfg -o -name \*.\[chs\] -o -name \*.mac -o -name \*.asm -o -name \*.sgml \) -print | while read f; do
t=$(tail -c2 $f; printf x)
2022-04-16 18:00:10 +00:00
[[ ${t%x} =~ $r1 ]] || echo "$f"
done`
cd $OLDCWD
if [ x"$FILES"x != xx ]; then
echo "error: found following files that have no newline at the end:" >&2
2022-04-16 18:00:10 +00:00
for n in $FILES; do
echo $n >&2
2022-04-16 18:00:10 +00:00
done
exit -1
fi