diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-01-01 15:44:14 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-01 15:44:14 +0100 |
commit | f2a2e5e42f764c690a665b55130563e369fcf907 (patch) | |
tree | ba313b0b0605c4012a69b192ed5f61c698d1bdcb /bin | |
parent | 0a37f91b04b5079c2263e4e7c4fdf0a8f2bb0eb6 (diff) | |
download | jenkins.debian.net-f2a2e5e42f764c690a665b55130563e369fcf907.tar.xz |
reproducible: fix logic error
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 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="" |