improve chk_tree and trailblank

The chk_tree will check for files in distlist that
would otherwise be ignored by trailblank or that
are used, by convention, as tempory / test files.

Fixed a shellcheck nit in trailblank.
This commit is contained in:
Landon Curt Noll
2023-10-06 22:25:00 -07:00
parent 0e6016f429
commit 01f0605055
2 changed files with 28 additions and 2 deletions

View File

@@ -212,7 +212,7 @@ if [[ -n $BACKUP_MAKEILES ]]; then
echo
echo "# You need execute the following to remove backup Makefiles:"
echo
echo "$BACKUP_MAKEILES" | while read file; do
echo "$BACKUP_MAKEILES" | while read -r file; do
echo "rm -f $file"
done
EXIT_CODE=7