diff options
author | Simon Hausmann <shausman@trolltech.com> | 2007-05-23 16:41:46 +0200 |
---|---|---|
committer | Simon Hausmann <shausman@trolltech.com> | 2007-05-23 16:41:46 +0200 |
commit | 65d2ade95e6ef5a15a30d5115073477dfe03fb85 (patch) | |
tree | 0ec1ee38431c4a909ca7d7755f99794f4c1709c0 /contrib/fast-import | |
parent | Doc updates (diff) | |
download | tgif-65d2ade95e6ef5a15a30d5115073477dfe03fb85.tar.xz |
Avoid calling git symbolic-ref refs/heads/p4//HEAD (double slash)
Signed-off-by: Simon Hausmann <shausman@trolltech.com>
Diffstat (limited to 'contrib/fast-import')
-rwxr-xr-x | contrib/fast-import/git-p4 | 2 |
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 |