Avoid calling git symbolic-ref refs/heads/p4//HEAD (double slash)

Signed-off-by: Simon Hausmann <shausman@trolltech.com>
maint
Simon Hausmann 2007-05-23 16:41:46 +02:00
parent a396b29267
commit 65d2ade95e
1 changed files with 1 additions and 1 deletions

View File

@ -1067,7 +1067,7 @@ class P4Sync(Command):
self.gitError.close()

if createP4HeadRef:
system("git symbolic-ref %s/HEAD %s" % (self.refPrefix, self.branch))
system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))

return True