summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_maintainance.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-03-05 19:16:51 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-05 19:16:51 +0100
commitf4be9ab8da94ce5b8e0c8d1f2e37fbddfa73b571 (patch)
treed68e75e63c0389fc2f23450e9db1b40881de0f8b /bin/reproducible_maintainance.sh
parent13121ed48bae453ca7cbc7023655c06b0094c347 (diff)
downloadjenkins.debian.net-f4be9ab8da94ce5b8e0c8d1f2e37fbddfa73b571.tar.xz
reproducible: simplify matching
Diffstat (limited to 'bin/reproducible_maintainance.sh')
-rwxr-xr-xbin/reproducible_maintainance.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_maintainance.sh b/bin/reproducible_maintainance.sh
index fbe49aff..9d895745 100755
--- a/bin/reproducible_maintainance.sh
+++ b/bin/reproducible_maintainance.sh
@@ -62,9 +62,9 @@ fi
OLDSTUFF=$(find /var/cache/pbuilder/result/ -mtime +1 -exec ls -lad {} \;)
if [ ! -z "$OLDSTUFF" ] ; then
# delete known files
- echo "Attempting file detection..."
cd /var/cache/pbuilder/result/
- for i in $(find . -maxdepth 1 -mtime +1 -type f) ; do
+ echo "Attempting file detection..."
+ for i in $(find . -maxdepth 1 -mtime +1 -type f -basename {} \;) ; do
case $i in
stderr|stdout) rm -v $i
;;