1
0
mirror of https://github.com/cc65/cc65.git synced 2026-01-26 13:16:42 +00:00

Add an explicit "exit 0" to the shell scripts. This worked more or less by

coincidence before since shell scripts return the exit code of the last
command run if there is no explicit exit statement.
This commit is contained in:
Kugel Fuhr
2025-06-25 20:34:41 +02:00
parent 55d9b2dbd0
commit fa81f14cbf
8 changed files with 8 additions and 1 deletions

View File

@@ -23,3 +23,4 @@ if [ x"$FILES"x != xx ]; then
done
exit -1
fi
exit 0

View File

@@ -16,3 +16,4 @@ if [ x"$FILES"x != xx ]; then
done
exit -1
fi
exit 0

View File

@@ -16,3 +16,4 @@ if [ x"$FILES"x != xx ]; then
done
exit -1
fi
exit 0

View File

@@ -36,3 +36,4 @@ function checkarray_quoted_name
for N in `grep -rl "BEGIN SORTED.SH" "$CHECK_DIR"`; do
checkarray_quoted_name $N
done
exit 0

View File

@@ -66,3 +66,4 @@ function checkarray
find "$CHECK_DIR" -name \*.\[ch\] -print | while read N; do
grep -q "BEGIN DECL SORTED_CODEOPT.SH" "$N" && checkarray $N
done
exit 0

View File

@@ -37,4 +37,4 @@ function checkarray_quoted_name
for N in `grep -rl "BEGIN SORTED_OPCODES.SH" "$CHECK_DIR"`; do
checkarray_quoted_name $N
done
exit 0

View File

@@ -16,3 +16,4 @@ if [ x"$FILES"x != xx ]; then
done
exit -1
fi
exit 0

View File

@@ -16,3 +16,4 @@ if [ x"$FILES"x != xx ]; then
done
exit -1
fi
exit 0