Reprepro: Ignore hidden packages

This commit is contained in:
Jeremy Gardais 2021-08-26 12:04:49 +02:00
parent 66ebcf6947
commit f66af4977d
Signed by: jegardai
GPG Key ID: E759BAA22501AF32
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ main() { # {{{
rm --force -- "${packages_list_file}"
debug_message "main \
Get the list of .deb files to manage from ${reprepro_dir} directory and store it to ${packages_list_file} file."
find "${reprepro_dir}" -maxdepth 1 -type f -iname "*.deb" > "${packages_list_file}"
find "${reprepro_dir}" -maxdepth 1 -type f -iname "*.deb" -not -name ".*" > "${packages_list_file}"
## }}}
## If the list of .deb files to manage is empty {{{