From b90c8d8cd5b3b54ca149a24c34d1db40c21bb7eb Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Thu, 12 Sep 2013 14:08:39 -0700 Subject: [PATCH] Make make-index ignore template branch. The template branch is used to create new publications. It is not a publication on its own. Ignore this branch when making the root publications index. Change-Id: I90098c120b958025568b942c9f4132faa2a10079 --- make-index | 2 ++ 1 file changed, 2 insertions(+) diff --git a/make-index b/make-index index 04aee4c..d961543 100755 --- a/make-index +++ b/make-index @@ -46,6 +46,8 @@ previous = '' for branch in git_branches(): if branch.startswith('remotes/origin/master'): continue + if branch.startswith('remotes/origin/template'): + continue if branch.startswith('remotes/origin/HEAD'): continue if '->' in branch: