diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-02 21:16:17 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-02 21:16:17 +0100 |
commit | 12c40c671a43ff28f228e115d9531bfb42339d87 (patch) | |
tree | e2c7b8cece657a6688e965ebf5d45d6fffd1c1d1 /bin | |
parent | 2717bbe70255ddd8fa587eccb8b8973c29894283 (diff) | |
download | jenkins.debian.net-12c40c671a43ff28f228e115d9531bfb42339d87.tar.xz |
reproducible: fix SQL syntax
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_dd_list.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_dd_list.sh b/bin/reproducible_html_dd_list.sh index db33068b..264565a5 100755 --- a/bin/reproducible_html_dd_list.sh +++ b/bin/reproducible_html_dd_list.sh @@ -24,7 +24,7 @@ for SUITE in $SUITES ; do SOURCES=$(mktemp) schroot --directory /tmp -c source:jenkins-reproducible-$SUITE cat /var/lib/apt/lists/*_source_Sources > $SOURCES || \ wget ${MIRROR}/dists/$SUITE/main/source/Sources.xz -O - | xzcat > $SOURCES - BAD=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT s.name FROM results AS r JOIN sources AS s ON r.package_id=s.id WHERE r.status="unreproducible" AND s.suite='$SUITE' ORDER BY r.build_date DESC" | xargs echo) + BAD=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT s.name FROM results AS r JOIN sources AS s ON r.package_id=s.id WHERE r.status='unreproducible' AND s.suite='$SUITE' ORDER BY r.build_date DESC" | xargs echo) echo "${BAD}" | dd-list --stdin --sources $SOURCES > $TMPFILE || true write_page "<p>The following maintainers and uploaders are listed for packages in $SUITE which have built unreproducibly:</p><p><pre>" while IFS= read -r LINE ; do |