diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-06 10:46:17 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-06 10:46:17 +0100 |
commit | 1f3630f49a367974ccbc9e12d55b63e8d287dc73 (patch) | |
tree | 7fa9558ffdcf2eac6158a3c53f4ef5ed3929128a | |
parent | b9c092d2d0717764bb374620da96da42add11dc8 (diff) | |
download | jenkins.debian.net-1f3630f49a367974ccbc9e12d55b63e8d287dc73.tar.xz |
reproducible: fix typo
-rwxr-xr-x | bin/reproducible_maintainance.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_maintainance.sh b/bin/reproducible_maintainance.sh index ed03f9a0..65325359 100755 --- a/bin/reproducible_maintainance.sh +++ b/bin/reproducible_maintainance.sh @@ -64,7 +64,7 @@ if [ ! -z "$OLDSTUFF" ] ; then # delete known files cd /var/cache/pbuilder/result/ echo "Attempting file detection..." - for i in $(find . -maxdepth 1 -mtime +1 -type f -basename {} \;) ; do + for i in $(find . -maxdepth 1 -mtime +1 -type f -exec basename {} \;) ; do case $i in stderr|stdout) rm -v $i ;; |