summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-05-25 09:52:59 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-25 09:52:59 +0200
commita1cb0cc021561c28d4982df19b63cf6e3042feda (patch)
tree00b665f6700939ab86be6b2eb9976f50902beb7e
parentf954a2bcb6510e37e060990f9f2cc793962c2a31 (diff)
downloadjenkins.debian.net-a1cb0cc021561c28d4982df19b63cf6e3042feda.tar.xz
reproducible: fix syntax
-rwxr-xr-xbin/reproducible_html_graphs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh
index 93280f64..cbd64f9f 100755
--- a/bin/reproducible_html_graphs.sh
+++ b/bin/reproducible_html_graphs.sh
@@ -255,7 +255,7 @@ update_bug_stats() {
echo "Open: ${OPEN[$TAG]}"
echo "Done: ${DONE[$TAG]}"
exit 1
- elif [ $DONE[$TAG] !=0 ] || [ $OPEN[$TAG] !=0 ] ; then
+ elif [ ${DONE[$TAG]} !=0 ] || [ ${OPEN[$TAG]} !=0 ] ; then
GOT_BTS_RESULTS=true
fi
SQL="$SQL, ${OPEN[$TAG]}, ${DONE[$TAG]}"