X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fprocess_unchecked.py;h=690c1c115e19a51f66f29244b09c33e6bb8d0684;hb=16f731a893f0ba036a995c25b8b5f3490394070e;hp=0e6b852e6aaac8830b34829564d24e5ca7169b57;hpb=ca7d643f6b998c6f8a1f5dac48e9e51e3cbc35db;p=dak.git diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 0e6b852e..690c1c11 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -1303,7 +1303,7 @@ def do_stableupdate (summary, short_summary): Logger.log(["Moving to proposed-updates", pkg.changes_file]); Upload.dump_vars(Cnf["Dir::Queue::ProposedUpdates"]); - move_to_dir(Cnf["Dir::Queue::ProposedUpdates"]) + move_to_dir(Cnf["Dir::Queue::ProposedUpdates"], perms=0664) # Check for override disparities Upload.Subst["__SUMMARY__"] = summary; @@ -1332,7 +1332,7 @@ def do_oldstableupdate (summary, short_summary): Logger.log(["Moving to oldstable-proposed-updates", pkg.changes_file]); Upload.dump_vars(Cnf["Dir::Queue::OldProposedUpdates"]); - move_to_dir(Cnf["Dir::Queue::OldProposedUpdates"]) + move_to_dir(Cnf["Dir::Queue::OldProposedUpdates"], perms=0664) # Check for override disparities Upload.Subst["__SUMMARY__"] = summary;