Merge branch 'master' into next

This commit is contained in:
Michael Tremer
2022-03-30 15:53:27 +00:00

View File

@@ -37,11 +37,11 @@ list_addons() {
process_includes() {
local include
for include in $@; do
# Skip any empty line (which will include /)
[ -n "${include}" ] || continue
local file
while read -r file; do
# Skip any empty line (which will include /)
[ -n "${file}" ] || continue
for file in /${file}; do
if [ -e "${file}" ]; then
echo "${file}"