diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-21 12:33:56 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-21 12:33:56 +0100 |
commit | 0a51922611b862e9bd34afcc15c3404181f82eb5 (patch) | |
tree | 1f9ed8f189aad62de5b62d00ec4106fc829f5fa6 /bin/reproducible_build.sh | |
parent | 3fcebe39d32cb7079961c1a2d05838cb748cc2c3 (diff) | |
download | jenkins.debian.net-0a51922611b862e9bd34afcc15c3404181f82eb5.tar.xz |
reproducible: fix variable name, shorten irc message
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-x | bin/reproducible_build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 69c205dc..ff950a44 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -27,7 +27,7 @@ cleanup_all() { set -x if [ "$SAVE_ARTIFACTS" = "1" ] ; then local random=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w5 | head -1) - local ARTIFACTS="artifacts/r00t-me/tmp-${random}/${SUITE}/${PACKAGE}" + local ARTIFACTS="artifacts/r00t-me/tmp-${random}/${SUITE}/${SRCPACKAGE}" mkdir -p /var/lib/jenkins/userContent/$ARTIFACTS cp -rv $TMPDIR/* /var/lib/jenkins/userContent/$ARTIFACTS/ echo | tee -a ${RBUILDLOG} @@ -36,7 +36,7 @@ cleanup_all() { echo "If you are not afraid facing your fears while helping the world by investigating reproducible build issues, you can download the artifacts from the following location:" | tee -a ${RBUILDLOG} echo "https://reproducible.debian.net/$ARTIFACTS" | tee -a ${RBUILDLOG} echo | tee -a ${RBUILDLOG} - kgb-client --conf /srv/jenkins/kgb/debian-reproducible.conf --relay-msg "new artifacts available at https://reproducible.debian.net/$ARTIFACTS" || true # don't fail the whole job + 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 |