diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-16 13:23:42 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-16 13:23:42 +0200 |
commit | f8fae35e8ba4b7ca885892ae3d9b88a2fdb712b9 (patch) | |
tree | 716fa334ecc1e4fcfe440fa54573572128e9091c | |
parent | 48a83037b48a8b0d838642ed17ca6ad1d8fc883f (diff) | |
download | jenkins.debian.net-f8fae35e8ba4b7ca885892ae3d9b88a2fdb712b9.tar.xz |
reproducibe: improve job output
-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 d6468aa3..6dc49214 100755 --- a/bin/reproducible_nodes_info.sh +++ b/bin/reproducible_nodes_info.sh @@ -19,7 +19,7 @@ for NODE in $BUILD_NODES ; do if [ "$NODE" = "jenkins.debian.net" ] ; then echo "$(date -u) - Trying to update $TARGET_DIR/$NODE." /srv/jenkins/bin/reproducible_info.sh > $TARGET_DIR/$NODE - echo "$(date -u) - $TARGET_DIR/$NODE updated." + echo "$(date -u) - $TARGET_DIR/$NODE updated:" cat $TARGET_DIR/$NODE continue fi @@ -37,7 +37,7 @@ for NODE in $BUILD_NODES ; do done if [ -s $TMPFILE_NODE ] ; then mv $TMPFILE_NODE $TARGET_DIR/$NODE - echo "$(date -u) - $TARGET_DIR/$NODE updated." + echo "$(date -u) - $TARGET_DIR/$NODE updated:" cat $TARGET_DIR/$NODE fi rm -f $TMPFILE_SRC $TMPFILE_NODE |