]> git.decadent.org.uk Git - dak.git/commitdiff
p-u
authorJoerg Jaspert <joerg@debian.org>
Wed, 29 Apr 2009 22:41:11 +0000 (00:41 +0200)
committerJoerg Jaspert <joerg@debian.org>
Wed, 29 Apr 2009 22:41:11 +0000 (00:41 +0200)
in case we did get called with a directory, do not complain about non-existing
.changes files. silently exit instead. helpful for calls from within cron, if you
dont want to have an additional otherwise useless if around it

Signed-off-by: Joerg Jaspert <joerg@debian.org>
dak/process_unchecked.py

index 5fce9fa98b9a403e02908ac4c85b2deb0f6af885..87c11d49fe193a0aa96da89cf41c9cb88b4995af 100755 (executable)
@@ -1585,7 +1585,10 @@ def main():
             changes_files.remove(f)
 
     if changes_files == []:
-        utils.fubar("Need at least one .changes file as an argument.")
+        if Cnf["Dinstall::Options::Directory"] == "":
+            utils.fubar("Need at least one .changes file as an argument.")
+        else:
+            sys.exit(0)
 
     # Check that we aren't going to clash with the daily cron job