Merge pull request #1050 from stickystyle/patch-1

set maxdepth to prevent traversal into subdirectories
This commit is contained in:
rmcrackan 2024-11-20 13:13:58 -05:00 committed by GitHub
commit eadf7cff79
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -80,7 +80,7 @@ setup_db() {
# Figure out the right databse file
if [[ -z "${LIBATION_DB_FILE}" ]];
then
dbCount=$(find "${DBPATH}" -type f -name "${dbpattern}" | wc -l)
dbCount=$(find "${DBPATH}" -maxdepth 1 -type f -name "${dbpattern}" | wc -l)
if [ "${dbCount}" -gt 1 ];
then
error "too many database files found, set LIBATION_DB_FILE to the filename you wish to use"