[syncpackage] When syncing multiple packages, if one of the packages is in the sync blocklist, do not exit, simply continue.

This commit is contained in:
Simon Quigley 2025-03-01 11:12:49 -06:00
parent 049425adb7
commit 162e758671
2 changed files with 4 additions and 1 deletions

3
debian/changelog vendored
View File

@ -1,5 +1,8 @@
ubuntu-dev-tools (0.205) UNRELEASED; urgency=medium
* [syncpackage] When syncing multiple packages, if one of the packages is in
the sync blocklist, do not exit, simply continue.
-- Simon Quigley <tsimonq2@debian.org> Sat, 01 Mar 2025 11:10:56 -0600
ubuntu-dev-tools (0.204) unstable; urgency=medium

View File

@ -754,7 +754,7 @@ def main():
Logger.info(" %s", line)
if blacklist_fail:
sys.exit(1)
continue
if args.lp:
copy(src_pkg, args.release, args.bugs, sponsoree, args.simulate, args.force)