commit 3adacb0c72a3626e63fce03da4a6186025fe2973 parent e5aac43c9b20aa209416a3294d90ed84a92a747d Author: Vincent Forest <vincent.forest@meso-star.com> Date: Thu, 21 Aug 2025 17:16:45 +0200 Fix the routine that lists the section subdirectories Only the subdirectories of the last section taken into account were listed. Diffstat:
| M | list.sh | | | 5 | +++-- |
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/list.sh b/list.sh @@ -53,12 +53,13 @@ sig() | tr '\n' ' ' \ | sed 's/ -o $//')" - eval "exec find ${search_dirs} ${_find_args} -type f \ + eval "exec find ${search_dirs} \( \( ${_find_args} \) -type f \ \( \ -name \"*.tgz\" \ -o -name \"*.tar.gz\" \ -o -name \"*.tar\" \ - \) -exec sh -c 'printf \"%s.sig\n\" \"\$1\"' -- {} \; \ + -o -name \"*.zip\" \ + \) \) -exec sh -c 'printf \"%s.sig\n\" \"\$1\"' -- {} \; \ | sort" }