diff options
Diffstat (limited to 'bin/reproducible_maintenance.sh')
-rwxr-xr-x | bin/reproducible_maintenance.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index 6a3cffee..84e1b836 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -305,13 +305,13 @@ if [ ! -z "$PSCALL" ] ; then fi -# remove artifacts older than 3 days -echo "$(date -u) - Checking for artifacts older than 3 days." -ARTIFACTS=$(find $BASE/artifacts/* -maxdepth 1 -type d -mtime +3 -exec ls -lad {} \; 2>/dev/null|| true) +# remove artifacts older than 2 days +echo "$(date -u) - Checking for artifacts older than 2 days." +ARTIFACTS=$(find $BASE/artifacts/* -maxdepth 1 -type d -mtime +2 -exec ls -lad {} \; 2>/dev/null|| true) if [ ! -z "$ARTIFACTS" ] ; then echo echo "Removed old artifacts:" - find $BASE/artifacts/* -maxdepth 1 -type d -mtime +3 -exec rm -rv {} \; + find $BASE/artifacts/* -maxdepth 1 -type d -mtime +2 -exec rm -rv {} \; echo fi |