diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-05-25 10:13:56 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-25 10:13:56 +0200 |
commit | e63ae002e1159103138a28d1bc5a46167f488f92 (patch) | |
tree | 328fefae39c83dbfb2752784ec73070cd9151ac2 /bin | |
parent | a1cb0cc021561c28d4982df19b63cf6e3042feda (diff) | |
download | jenkins.debian.net-e63ae002e1159103138a28d1bc5a46167f488f92.tar.xz |
reproducible: fix syntax
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index cbd64f9f..30b5ac96 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]}" |