diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-23 13:16:38 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-23 13:16:38 +0100 |
commit | 34785998ef51891288ad32779605240d282049f0 (patch) | |
tree | fb7abbd790f6cf880dd7bc80f47981edc17e9df0 /bin | |
parent | 5be7a6c1db7e6e98b8319ecf0976d4667781dc6e (diff) | |
download | jenkins.debian.net-34785998ef51891288ad32779605240d282049f0.tar.xz |
reproducible armhf: fix bug which preventing meta_pkg_stats to be updated
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_pkg_sets.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_pkg_sets.sh b/bin/reproducible_html_pkg_sets.sh index ba4346f6..ec79f733 100755 --- a/bin/reproducible_html_pkg_sets.sh +++ b/bin/reproducible_html_pkg_sets.sh @@ -71,7 +71,7 @@ gather_meta_stats() { # update_meta_pkg_stats() { for i in $(seq 1 ${#META_PKGSET[@]}) ; do - RESULT=$(sqlite3 -init ${INIT} ${PACKAGES_DB} "SELECT datum,meta_pkg,suite from ${TABLE[6]} WHERE datum = \"$DATE\" AND suite = \"$SUITE\" AND meta_pkg = \"${META_PKGSET[$i]}\"") + RESULT=$(sqlite3 -init ${INIT} ${PACKAGES_DB} "SELECT datum,meta_pkg,suite from ${TABLE[6]} WHERE datum = \"$DATE\" AND suite = \"$SUITE\" AND architecture = \"$ARCH\" AND meta_pkg = \"${META_PKGSET[$i]}\"") if [ -z $RESULT ] ; then META_RESULT=true gather_meta_stats $i |