From 156a917d3014b8467bfbf3631d5ee4715156fc33 Mon Sep 17 00:00:00 2001 From: Ian Leonard Date: Wed, 8 Sep 2021 08:04:34 +0000 Subject: [PATCH] packages-checker: detail more of what it is doing Signed-off-by: Ian Leonard --- tools/packages-checker | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/packages-checker b/tools/packages-checker index 063e1e9fb7..d7de4c41de 100755 --- a/tools/packages-checker +++ b/tools/packages-checker @@ -7,6 +7,13 @@ # follow certain coding standards used in the project. Corrections are grouped # by the subdirectory within the packages feed, and then commited. +# Corrections made: +# PKG_VAR="$PKG_VAR stuff" -> PKG_VAR+=" stuff" +# $PKG_VAR -> ${PKG_VAR} +# result=`subcommand` -> result=$(subcommand) +# [ test ] ; then -> [ test ]; then +# trailing whitespace at end of line + for directory in $(find packages/ -mindepth 1 -maxdepth 1 -type d | sort); do for file in $(find "${directory}" -type f -name "package.mk" | sort); do tools/fixlecode.py -qw -f "${file}"