diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-30 23:51:07 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-30 23:51:07 +0200 |
commit | ad6f74f4f31481d5d2d2c615aeb9988b30e67e13 (patch) | |
tree | 50c85b3c110ee9db7e55b324f7165877459a6ac8 /bin | |
parent | a3f5858dd60c79c3756291561ea447ea0be6019c (diff) | |
download | jenkins.debian.net-ad6f74f4f31481d5d2d2c615aeb9988b30e67e13.tar.xz |
reproducible: dont fail job if cleanup fails
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 2 |
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 } |