summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-05-25 10:33:34 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-25 10:33:34 +0200
commita696cb70203001db32d6555a61e5a2bef70ba5b1 (patch)
tree4214a22151331a8cdca8289ce3d3ec16bb56d010 /bin
parente63ae002e1159103138a28d1bc5a46167f488f92 (diff)
downloadjenkins.debian.net-a696cb70203001db32d6555a61e5a2bef70ba5b1.tar.xz
reproducible: fix syntax
Diffstat (limited to 'bin')
-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 30b5ac96..6ddc5adc 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]}"