1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-28 10:55:43 +00:00

Merge branch 'cc65:master' into atari7800conio

This commit is contained in:
Karri Kaksonen 2022-04-19 22:07:54 +03:00 committed by GitHub
commit c0f23d24ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -17,9 +17,9 @@ done`
cd $OLDCWD cd $OLDCWD
if [ x"$FILES"x != xx ]; then if [ x"$FILES"x != xx ]; then
echo "error: found following files that have no newline at the end:" echo "error: found following files that have no newline at the end:" >&2
for n in $FILES; do for n in $FILES; do
echo $n echo $n >&2
done done
exit -1 exit -1
fi fi

View File

@ -10,9 +10,9 @@ FILES=`find $CHECK_PATH -type f \( -name \*.inc -o -name Makefile -o -name \*.cf
cd $OLDCWD cd $OLDCWD
if [ x"$FILES"x != xx ]; then if [ x"$FILES"x != xx ]; then
echo "error: found dangling spaces in the following files:" echo "error: found dangling spaces in the following files:" >&2
for n in $FILES; do for n in $FILES; do
echo $n echo $n >&2
done done
exit -1 exit -1
fi fi

View File

@ -10,9 +10,9 @@ FILES=`find $CHECK_PATH -type f \( \( -name \*.inc -a \! -name Makefile.inc \) -
cd $OLDCWD cd $OLDCWD
if [ x"$FILES"x != xx ]; then if [ x"$FILES"x != xx ]; then
echo "error: found TABs in the following files:" echo "error: found TABs in the following files:" >&2
for n in $FILES; do for n in $FILES; do
echo $n echo $n >&2
done done
exit -1 exit -1
fi fi