1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-21 20:56:09 +02:00

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

Signed-off-by: Simon Hausmann <shausman@trolltech.com>
This commit is contained in:
Simon Hausmann 2007-05-23 16:41:46 +02:00
parent a396b29267
commit 65d2ade95e

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