diff options
author | Mattia Rizzolo <mattia@debian.org> | 2017-02-17 13:19:02 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-02-17 13:21:37 +0100 |
commit | 72b154291266914cb121eb901a9a30d6fb6ebc27 (patch) | |
tree | cfe7f414a8ba6955ba3c1a4433dbb1fbbf2bb798 | |
parent | b248c63969a71bde79beed12022ed43e68b3147f (diff) | |
download | jenkins.debian.net-72b154291266914cb121eb901a9a30d6fb6ebc27.tar.xz |
reproducible debian: fix syntax
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_maintenance.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index 0991985f..8a4d79e8 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -192,6 +192,7 @@ if [ ! -z "$OLDSTUFF" ] ; then echo "These old directories have been deleted." echo DIRTY=true +fi # delete old temp directories echo "$(date -u) - Deleting temp directories, older than 3 days." OLDSTUFF=$(find $REP_RESULTS/rbuild-debian -maxdepth 1 -type d -mtime +2 -name "tmp.*" -exec ls -lad {} \; || true) @@ -360,7 +361,6 @@ if [ "$HOSTNAME" = "$MAINNODE" ] ; then fi rm $PACKAGES - find $REP_RESULTS/rbuild-debian -maxdepth 1 -type d -mtime +2 -name "tmp.*" -exec rm -rv {} \; || true # # delete jenkins html logs from reproducible_builder_* jobs as they are mostly redundant # (they only provide the extended value of parsed console output, which we dont need here.) |