summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Hausmann <shausman@trolltech.com>2007-05-23 16:41:46 +0200
committerSimon Hausmann <shausman@trolltech.com>2007-05-23 16:41:46 +0200
commit65d2ade95e6ef5a15a30d5115073477dfe03fb85 (patch)
tree0ec1ee38431c4a909ca7d7755f99794f4c1709c0
parenta396b292678838b4cae1b358c62da6b4e0929fc2 (diff)
downloadgit-65d2ade95e6ef5a15a30d5115073477dfe03fb85.tar.gz
Avoid calling git symbolic-ref refs/heads/p4//HEAD (double slash)
Signed-off-by: Simon Hausmann <shausman@trolltech.com>
-rwxr-xr-xcontrib/fast-import/git-p42
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4
index 152c3c1ca5..5cea6cf9ac 100755
--- a/contrib/fast-import/git-p4
+++ b/contrib/fast-import/git-p4
@@ -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