From ec46fd6d0a19172960eb54441c67df5c385d9543 Mon Sep 17 00:00:00 2001 From: Joerg Jaspert Date: Fri, 21 Mar 2008 17:06:25 +0100 Subject: [PATCH] Also only run on unstable uploads --- config/debian/extensions.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/debian/extensions.py b/config/debian/extensions.py index 31728d2a..51c9f82a 100644 --- a/config/debian/extensions.py +++ b/config/debian/extensions.py @@ -15,7 +15,9 @@ def check_transition(): sourcepkg = changes["source"] # No sourceful upload -> no need to do anything else, direct return - if "source" not in changes["architecture"]: + # We also work with unstable uploads, not experimental or those going to some + # proposed-updates queue + if "source" not in changes["architecture"] or "unstable" not in changes["distribution"]: return # Also only check if there is a file defined (and existant) with -- 2.39.2