[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] Choose suite to redirect upload to before installing source



---
 dak/process_policy.py | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/dak/process_policy.py b/dak/process_policy.py
index a4e6d87..4b3d97d 100755
--- a/dak/process_policy.py
+++ b/dak/process_policy.py
@@ -186,24 +186,24 @@ def comment_accept(upload, srcqueue, comments, transaction):
                 )
 
         for db_binary in upload.binaries:
+            # Now, let's work out where to copy this guy to -- if it's
+            # a debug binary, and the suite has a debug suite, let's go
+            # ahead and target the debug suite rather then the stock
+            # suite.
+            copy_to_suite = suite
+            if debug_suite is not None and is_debug_binary(db_binary):
+                copy_to_suite = debug_suite
+
             # build queues may miss the source package if this is a
             # binary-only upload.
             if suite != upload.target_suite:
                 transaction.copy_source(
                     db_binary.source,
-                    suite,
+                    copy_to_suite,
                     source_component_func(db_binary.source),
                     allow_tainted=allow_tainted,
                 )
 
-            # Now, let's work out where to copy this guy to -- if it's
-            # a debug binary, and the suite has a debug suite, let's go
-            # ahead and target the debug suite rather then the stock
-            # suite.
-            copy_to_suite = suite
-            if debug_suite is not None and is_debug_binary(db_binary):
-                copy_to_suite = debug_suite
-
             transaction.copy_binary(
                 db_binary,
                 copy_to_suite,
-- 
2.1.4



Reply to: