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

[dak/master 2/3] Test that we have Dinstall::LintianTags before we symlink anything



Signed-off-by: Chris Lamb <lamby@debian.org>
---
 daklib/queue.py |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/daklib/queue.py b/daklib/queue.py
index 1c3afff..8ab693a 100755
--- a/daklib/queue.py
+++ b/daklib/queue.py
@@ -1209,6 +1209,11 @@ class Upload(object):
         if not valid_dist:
             return
 
+        tagfile = cnf.get("Dinstall::LintianTags")
+        if tagfile is None:
+            # We don't have a tagfile, so just don't do anything.
+            return
+
         # Try and find all orig mentioned in the .dsc
         target_dir = '.'
         symlinked = []
@@ -1276,10 +1281,6 @@ class Upload(object):
                 if symlink_if_valid(queuefile_path):
                     break
 
-        tagfile = cnf.get("Dinstall::LintianTags")
-        if tagfile is None:
-            # We don't have a tagfile, so just don't do anything.
-            return
         # Parse the yaml file
         sourcefile = file(tagfile, 'r')
         sourcecontent = sourcefile.read()
-- 
1.6.3.3



Reply to: