add more style checks

This commit is contained in:
mrdudz
2022-04-16 20:00:10 +02:00
parent c977afe0b8
commit eb04ce8190
3 changed files with 47 additions and 1 deletions

16
.github/checks/spaces.sh vendored Executable file
View File

@@ -0,0 +1,16 @@
#! /bin/bash
OLDCWD=`pwd`
SCRIPT_PATH=`dirname $0`
cd $SCRIPT_PATH/../../
FILES=`find $CHECK_PATH -type f \( \( -name \*.inc -a \! -name Makefile.inc \) -o -name \*.cfg -o -name \*.c -o -name \*.s -o -name \*.h -o -name \*.asm -o -name \*.sgml \) -print | xargs grep -l ' $' | grep -v "libwrk/" | grep -v "testwrk/"`
cd $OLDCWD
if [ x"$FILES"x != xx ]; then
echo "error: found dangling spaces in the following files:"
for n in $FILES; do
echo $n
done
exit -1
fi