summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-03-21 13:24:28 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-21 13:24:28 +0100
commitbe91021144f90f5cf720db5ac1fb91295824791a (patch)
tree028d141c11cb9747fb6f6443cdd14d94cd9f1a93 /bin
parent4625ba015db9302b5f4a86dfe7fa0f995a3bc47c (diff)
downloadjenkins.debian.net-be91021144f90f5cf720db5ac1fb91295824791a.tar.xz
remove debug output
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_build.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 8c451af2..13c04ea5 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -24,12 +24,11 @@ create_results_dirs() {
}
cleanup_all() {
- set -x
if [ "$SAVE_ARTIFACTS" = "1" ] ; then
local random=$(tr -cd '[:alnum:]' < /dev/urandom | head -c5 ; echo)
local ARTIFACTS="artifacts/r00t-me/${SRCPACKAGE}_${SUITE}_tmp-${random}"
mkdir -p /var/lib/jenkins/userContent/$ARTIFACTS
- cp -rv $TMPDIR/* /var/lib/jenkins/userContent/$ARTIFACTS/
+ cp -r $TMPDIR/* /var/lib/jenkins/userContent/$ARTIFACTS/
echo | tee -a ${RBUILDLOG}
echo "Artifacts from this build are preserved. They will be available for 72h only, so download them now if you want them." | tee -a ${RBUILDLOG}
echo "WARNING: You shouldn't trust packages you downloaded from this host, they can contain malware or the worst of your fears, packaged nicely in debian format." | tee -a ${RBUILDLOG}
@@ -38,7 +37,6 @@ cleanup_all() {
echo | tee -a ${RBUILDLOG}
kgb-client --conf /srv/jenkins/kgb/debian-reproducible.conf --relay-msg "https://reproducible.debian.net/$ARTIFACTS/ published" || true # don't fail the whole job
fi
- set +x
rm -r $TMPDIR $TMPCFG
}