summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-12-03 13:38:32 +0100
committerHolger Levsen <holger@layer-acht.org>2016-12-03 13:38:32 +0100
commit12d0c9e49cca5a0d4a2118b399d3fa80b3f93814 (patch)
treef9b1f33cf209bf7d868204aef372ffddbbc05a4d /bin
parented78a967228ca1d83a2c500190109f172c6436b5 (diff)
downloadjenkins.debian.net-12d0c9e49cca5a0d4a2118b399d3fa80b3f93814.tar.xz
reproducible Debian: better use echo in cleanup function, else rbuild.log gets overwritten
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index a4d707dd..79dfef90 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -100,7 +100,7 @@ save_artifacts() {
}
cleanup_all() {
- log_info "Starting cleanup."
+ echo "Starting cleanup."
if [ "$SAVE_ARTIFACTS" = "1" ] ; then
save_artifacts
elif [ ! -z "$NOTIFY" ] && [ "$SAVE_ARTIFACTS" = "0" ] ; then
@@ -114,7 +114,7 @@ cleanup_all() {
cd
rm -r $TMPDIR || true
fi
- log_info "All cleanup done."
+ echo "All cleanup done."
}
update_db_and_html() {