diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-16 11:49:59 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-16 11:49:59 +0200 |
commit | fe2bccc385ab6906c4c496ad830778f20855f3f5 (patch) | |
tree | 70aa0dcea1acdd259e609d4af0484d7622acf72c | |
parent | cf25c53644c7d88eca1d183c295863ec438937e4 (diff) | |
download | jenkins.debian.net-fe2bccc385ab6906c4c496ad830778f20855f3f5.tar.xz |
reproducible: call master_wrapper with correct JOB_NAME
-rwxr-xr-x | bin/reproducible_nodes_info.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_nodes_info.sh b/bin/reproducible_nodes_info.sh index 3f75ac02..deb8ac27 100755 --- a/bin/reproducible_nodes_info.sh +++ b/bin/reproducible_nodes_info.sh @@ -25,8 +25,8 @@ for NODE in $BUILD_NODES ; do # call jenkins_master_wrapper.sh so we only need to track different ssh ports in one place # jenkins_master_wrapper.sh needs NODE_NAME and JOB_NAME export NODE_NAME=$NODE - export JOB_NAME=/srv/jenkins/bin/reproducible_info.sh - /srv/jenkins/bin/jenkins_master_wrapper.sh > $TMPFILE_SRC + export JOB_NAME=$JOB_NAME + /srv/jenkins/bin/jenkins_master_wrapper.sh /srv/jenkins/bin/reproducible_info.sh > $TMPFILE_SRC for KEY in $BUILD_ENV_VARS ; do VALUE=$(egrep "^$KEY=" $TMPFILE_SRC | cut -d "=" -f2-) if [ ! -z "$VALUE" ] ; then |