From 162e758671ea5abbf7863ccf70f12169fc716839 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sat, 1 Mar 2025 11:12:49 -0600 Subject: [PATCH] [syncpackage] When syncing multiple packages, if one of the packages is in the sync blocklist, do not exit, simply continue. --- debian/changelog | 3 +++ syncpackage | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index fa25f35..025cb12 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sat, 01 Mar 2025 11:10:56 -0600 ubuntu-dev-tools (0.204) unstable; urgency=medium diff --git a/syncpackage b/syncpackage index 2f8af59..425aede 100755 --- a/syncpackage +++ b/syncpackage @@ -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)