summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-01-01 15:44:14 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-01 15:44:14 +0100
commitf2a2e5e42f764c690a665b55130563e369fcf907 (patch)
treeba313b0b0605c4012a69b192ed5f61c698d1bdcb /bin
parent0a37f91b04b5079c2263e4e7c4fdf0a8f2bb0eb6 (diff)
downloadjenkins.debian.net-f2a2e5e42f764c690a665b55130563e369fcf907.tar.xz
reproducible: fix logic error
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 e80b97f4..d924f835 100755
--- a/bin/reproducible_html_graphs.sh
+++ b/bin/reproducible_html_graphs.sh
@@ -115,7 +115,7 @@ YLABEL[4]="Amounts"
redo_png() {
echo "${FIELDS[$i]}" > ${TABLE[$i]}.csv
# TABLE[3+4] don't have a suite column...
- if [ $i -ne 3 ] || [ $i -ne 4 ] ; then
+ if [ $i -ne 3 ] && [ $i -ne 4 ] ; then
WHERE_SUITE="WHERE suite = '$SUITE'"
else
WHERE_SUITE=""