From 940c17baf36bd95914d235d4e2ec12bc25532acc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Adeodato=20Sim=C3=B3?= Date: Fri, 20 Mar 2009 13:24:56 +0100 Subject: [PATCH] trigger.daily: do not require $ARCHS_unstable to be a superset of the rest. --- trigger.daily | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/trigger.daily b/trigger.daily index 73b1776..db967a8 100755 --- a/trigger.daily +++ b/trigger.daily @@ -158,7 +158,12 @@ echo "fetch and quinn completed: `date -u`" echo "fetch and quinn completed: `date -u`" >&3 umask 002 -for a in $ARCHS_unstable ; do +# Gross hack: we need a list of all architectures, because this loop +# insists on iterating on arches and then suites, instead of the +# opposite. +ALL_ARCHES=$(echo $ARCHS_oldstable $ARCHS_stable $ARCHS_testing $ARCHS_unstable \ + | tr ' ' '\n' | sort -u) +for a in $ALL_ARCHES ; do wanna-build --create-maintenance-lock --database=$a/build-db for d in $DISTS ; do -- 2.39.5