summaryrefslogtreecommitdiff
path: root/Git
diff options
context:
space:
mode:
Diffstat (limited to 'Git')
-rw-r--r--Git/Merge.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Git/Merge.hs b/Git/Merge.hs
index 3fda34e6c..bad9f8258 100644
--- a/Git/Merge.hs
+++ b/Git/Merge.hs
@@ -15,5 +15,5 @@ import Git.Version
{- Avoids recent git's interactive merge. -}
mergeNonInteractive :: Ref -> Repo -> IO Bool
mergeNonInteractive branch
- | older 1.7.7.6 = runBool "merge" [Param $ show branch]
+ | older "1.7.7.6" = runBool "merge" [Param $ show branch]
| otherwise = runBool "merge" [Param "--no-edit", Param $ show branch]