bundles/scansnap: don't try to delete output directory
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2021-05-19 06:35:18 +02:00
parent 4d33539a63
commit 9e07af289e
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -15,6 +15,6 @@ defaults = {
},
'cron': {
# Automatically remove files which are older than 14 days
'scansnap_cleanup': '00 00 * * * root /usr/bin/find /srv/scansnap/ -mtime +14 -delete',
'scansnap_cleanup': '00 00 * * * root /usr/bin/find /srv/scansnap/ -mindepth 1 -mtime +14 -delete',
},
}