summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--roles/distgit/templates/pkgdb_sync_git_branches.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/roles/distgit/templates/pkgdb_sync_git_branches.py b/roles/distgit/templates/pkgdb_sync_git_branches.py
index d84a1b1ec..a2b5c407c 100644
--- a/roles/distgit/templates/pkgdb_sync_git_branches.py
+++ b/roles/distgit/templates/pkgdb_sync_git_branches.py
@@ -185,7 +185,10 @@ def branch_package(ns, pkgname, requested_branches, existing_branches):
exists = os.path.exists(new_place)
if not exists or 'master' not in existing_branches:
if not TEST_ONLY:
- _invoke(SETUP_PACKAGE, [os.path.join(ns, pkgname)])
+ try:
+ _invoke(SETUP_PACKAGE, [os.path.join(ns, pkgname)])
+ except:
+ return
if ns == 'rpms':
old_place = os.path.join(GIT_FOLDER, '%s.git' % pkgname)
if not os.path.exists(old_place):