don't try to delete the logs directory

without this, the logs/ directory was found as old and this cronjob would try to delete it over and over again, generating spurious emails
This commit is contained in:
Antoine Beaupr�� 2015-07-17 22:24:10 +00:00 committed by Benjamin Sonntag
parent 750822ff9c
commit d15a16ef23
1 changed files with 1 additions and 1 deletions

View File

@ -17,4 +17,4 @@ done
stop_if_jobs_locked
# ALTERNC_LOGS is from local.sh
find "$ALTERNC_LOGS" -mtime +$DAYS -delete
find "$ALTERNC_LOGS" -type f -mtime +$DAYS -delete