From 68cbcf1b2575ca151ed3b11698916bcbbd1b890c Mon Sep 17 00:00:00 2001 From: Vitor Antunes Date: Mon, 22 Aug 2011 09:33:09 +0100 Subject: [PATCH] git-p4: Process detectCopiesHarder with --bool Signed-off-by: Vitor Antunes Acked-by: Pete Wyckoff Signed-off-by: Junio C Hamano --- contrib/fast-import/git-p4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index 29a5390fbd..0db3e72665 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)) -- 2.11.4.GIT