summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-08-30 23:51:07 +0200
committerHolger Levsen <holger@layer-acht.org>2015-08-30 23:51:07 +0200
commitad6f74f4f31481d5d2d2c615aeb9988b30e67e13 (patch)
tree50c85b3c110ee9db7e55b324f7165877459a6ac8 /bin/reproducible_build.sh
parenta3f5858dd60c79c3756291561ea447ea0be6019c (diff)
downloadjenkins.debian.net-ad6f74f4f31481d5d2d2c615aeb9988b30e67e13.tar.xz
reproducible: dont fail job if cleanup fails
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-xbin/reproducible_build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 8bc5928e..6d5e5cbe 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -101,7 +101,7 @@ cleanup_all() {
# compressed files in the html. It's cheap and quite safe so, *shrugs*...
gen_package_html $SRCPACKAGE
cd
- rm -r $TMPDIR
+ rm -r $TMPDIR || true
fi
if ! $BAD_LOCKFILE ; then rm -f $LOCKFILE ; fi
}