mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-26 18:10:23 +00:00
packages-checker: detail more of what it is doing
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
This commit is contained in:
parent
050ba25fb6
commit
156a917d30
@ -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}"
|
||||
|
Loading…
Reference in New Issue
Block a user