]> git.decadent.org.uk Git - dak.git/commitdiff
Don't call check_* due when we are running with No-Action
authorChris Lamb <lamby@debian.org>
Wed, 28 Oct 2009 15:20:06 +0000 (15:20 +0000)
committerChris Lamb <lamby@debian.org>
Wed, 28 Oct 2009 15:20:06 +0000 (15:20 +0000)
Signed-off-by: Chris Lamb <lamby@debian.org>
dak/process_unchecked.py

index 34020205bba3ba0b75d35fdcf6225e3848897bb6..f7caf303192ec07993888dd5b6aff94fe609fa4e 100755 (executable)
@@ -497,7 +497,7 @@ def process_it(changes_file):
                 u.check_distributions()
                 u.check_files(not Options["No-Action"])
                 valid_dsc_p = u.check_dsc(not Options["No-Action"])
-                if valid_dsc_p:
+                if valid_dsc_p and not Options["No-Action"]:
                     u.check_source()
                     u.check_lintian()
                 u.check_hashes()