diff options
Diffstat (limited to 'Git')
-rw-r--r-- | Git/Branch.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Git/Branch.hs b/Git/Branch.hs index 3f2496ca3..0b7d888b8 100644 --- a/Git/Branch.hs +++ b/Git/Branch.hs @@ -113,7 +113,7 @@ data CommitMode = ManualCommit | AutomaticCommit applyCommitMode :: CommitMode -> [CommandParam] -> [CommandParam] applyCommitMode commitmode ps - | commitmode == AutomaticCommit && not (Git.BuildVersion.older "1.8.5") = + | commitmode == AutomaticCommit && not (Git.BuildVersion.older "2.0.0") = Param "--no-gpg-sign" : ps | otherwise = ps |