diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-10-13 14:29:36 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-10-13 17:01:37 +0200 |
commit | 3273d26e7c4739e02904c02f0d755eec1a8240ce (patch) | |
tree | 15c014909e0e3d719ad1be56fcd791760b49ee6f | |
parent | ed57e5eba618d3443ae4cbf2818667e37003720f (diff) | |
download | jenkins.debian.net-3273d26e7c4739e02904c02f0d755eec1a8240ce.tar.xz |
reproducible_openwrt|lede: fix mistype in if
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rw-r--r-- | bin/reproducible_openwrt_common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_openwrt_common.sh b/bin/reproducible_openwrt_common.sh index 3e1098a8..4df7cb40 100644 --- a/bin/reproducible_openwrt_common.sh +++ b/bin/reproducible_openwrt_common.sh @@ -42,7 +42,7 @@ node_create_tmpdirs() { master_cleanup_tmpdirs() { # we will save the logs in case we got called as trap handler # in a success build the logs are saved on a different function - if [ "$1" != "success"] ; then + if [ "$1" != "success" ] ; then # job failed ssh $GENERIC_NODE1 reproducible_$TYPE node openwrt_save_logs $TMPDIR/logs.xz $TMPDIR/build || true ssh $GENERIC_NODE2 reproducible_$TYPE node openwrt_save_logs $TMPDIR/logs.xz $TMPDIR/build || true |