From f2a2e5e42f764c690a665b55130563e369fcf907 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Thu, 1 Jan 2015 15:44:14 +0100 Subject: reproducible: fix logic error --- bin/reproducible_html_graphs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') 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="" -- cgit v1.2.3-54-g00ecf