summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-10-07 03:58:24 +0200
committerHolger Levsen <holger@layer-acht.org>2015-10-07 03:58:24 +0200
commit178ec17624dc605d58a58519d92875b93c064dbb (patch)
tree1999e3805426917180f21377eec4ea48b9312fc6 /bin
parent20725b4c253e8010beeca98cf04b7ca5349e1ea1 (diff)
downloadjenkins.debian.net-178ec17624dc605d58a58519d92875b93c064dbb.tar.xz
reproducible: fix typo syntax error
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index ef21e23b..5d89649d 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -574,10 +574,10 @@ create_png_from_table() {
elif [ $1 -eq 7 ] ; then
sqlite3 -init ${INIT} -csv ${PACKAGES_DB} "SELECT datum, $SUM_DONE, $SUM_OPEN from ${TABLE[3]} ORDER BY datum" >> ${TABLE[$1]}.csv
elif [ $1 -eq 8 ] ; then
- if [ "$ARCH" = "amd64" ] && [ "SUITE" = "testing" ]
+ if [ "$ARCH" = "amd64" ] && [ "SUITE" = "testing" ] ; then
# testing/amd64 was only build since...
WHERE2_EXTRA="WHERE s.datum >= '2015-03-08'"
- elif [ "$ARCH" = "amd64" ] && [ "SUITE" = "experimental" ]
+ elif [ "$ARCH" = "amd64" ] && [ "SUITE" = "experimental" ] ; then
# experimental/amd64 was only build since...
WHERE2_EXTRA="WHERE s.datum >= '2015-02-28'"
fi