require recordings and images to be a little larger

master
Kenneth Barbour 2022-07-12 21:29:30 -04:00
parent 9a02dec509
commit 6b7fbf005e
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ function validate_manifest() {
if [ ! -f ${dir}/${file} ]; then if [ ! -f ${dir}/${file} ]; then
logdebug "Missing file %s" "${dir}/${file}" logdebug "Missing file %s" "${dir}/${file}"
return 1 return 1
elif [ "$(wc -c <${dir}/${file})" -lt 5000 ]; then elif [ "$(wc -c <${dir}/${file})" -lt 50000 ]; then
logdebug "File too small %s" "${dir}/${file}" logdebug "File too small %s" "${dir}/${file}"
return 2 return 2
fi fi