From 9bfeea41fe4ec3233cf887d192af42183ec03d79 Mon Sep 17 00:00:00 2001 From: Steven Walter Date: Fri, 14 Aug 2009 15:41:26 -0400 Subject: [PATCH] svn: fix tags --- plugins/svn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/svn.py b/plugins/svn.py index 0cb5a43..101aaeb 100644 --- a/plugins/svn.py +++ b/plugins/svn.py @@ -93,7 +93,7 @@ class SvnPlugin(YapCore): os.system("git config svn-remote.svn.branches %s/*:refs/remotes/svn/*" % branches) tags = trunk.replace('trunk', 'tags') if tags != trunk: - os.system("git config svn-remote.svn.tags %s/*:refs/tags/*" % tags) + os.system("git config svn-remote.svn.tags %s/*:refs/remotes/svn/tags/*" % tags) self.cmd_repo("svn", url) os.system("git config yap.svn.enabled 1") -- 2.11.4.GIT