From: Ansgar Burchardt Date: Sat, 15 Aug 2015 05:39:45 +0000 (+0200) Subject: Add unstable to exception list for source-only uploads X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=baad4033d889c10ebe7f38043c7cd6c9a5c4657d;hp=1bd09edc17b13bd9310e5fb0eb702fdadbc9c253;p=dak.git Add unstable to exception list for source-only uploads --- diff --git a/daklib/checks.py b/daklib/checks.py index 70e1f5e3..60149b5c 100644 --- a/daklib/checks.py +++ b/daklib/checks.py @@ -690,6 +690,7 @@ class NoSourceOnlyCheck(Check): if not allow_no_arch_indep_uploads \ and 'all' not in changes.architectures \ and 'experimental' not in changes.distributions \ + and 'unstable' not in changes.distributions \ and changes.source.package_list.has_arch_indep_packages(): raise Reject('Uploads not including architecture-independent packages are not allowed.')