diff options
author | Vitor Antunes <vitor.hda@gmail.com> | 2011-08-22 09:33:09 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-22 11:50:43 -0700 |
commit | 68cbcf1b2575ca151ed3b11698916bcbbd1b890c (patch) | |
tree | c705e780c1dff520ddcd4170922be6f2d74d536c /contrib/fast-import | |
parent | c5cd4ef0fd0838b3a7c97e53f361ba15db736138 (diff) | |
download | git-68cbcf1b2575ca151ed3b11698916bcbbd1b890c.tar.gz git-68cbcf1b2575ca151ed3b11698916bcbbd1b890c.tar.xz |
git-p4: Process detectCopiesHarder with --bool
Signed-off-by: Vitor Antunes <vitor.hda@gmail.com>
Acked-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.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 29a5390fb..0db3e7266 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -789,7 +789,7 @@ class P4Submit(Command, P4UserMap): elif detectCopies != "" and detectCopies.lower() != "false": diffOpts += " -C%s" % detectCopies - if gitConfig("git-p4.detectCopiesHarder").lower() == "true": + if gitConfig("git-p4.detectCopiesHarder", "--bool") == "true": diffOpts += " --find-copies-harder" diff = read_pipe_lines("git diff-tree -r %s \"%s^\" \"%s\"" % (diffOpts, id, id)) |