1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
cc65/.github/checks/spaces.sh

19 lines
510 B
Bash
Raw 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/../../
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 | grep -v "test/" | grep -v "libwrk/" | grep -v "testwrk/" | xargs grep -l ' $'`
2022-04-16 18:00:10 +00:00
cd $OLDCWD
if [ x"$FILES"x != xx ]; then
echo "error: found dangling spaces in the following files:" >&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