From: Steven Walter Date: Fri, 14 Aug 2009 19:41:26 +0000 (-0400) Subject: svn: fix tags X-Git-Tag: v0.4~1 X-Git-Url: https://repo.or.cz/w/yap.git/commitdiff_plain/9bfeea41fe4ec3233cf887d192af42183ec03d79 svn: fix tags --- 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")