summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Git/Ref.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Git/Ref.hs b/Git/Ref.hs
index 26a1fc8bf..c98802cb7 100644
--- a/Git/Ref.hs
+++ b/Git/Ref.hs
@@ -35,7 +35,7 @@ under dir r = Ref $ dir </> show (base r)
{- Checks if a ref exists. -}
exists :: Ref -> Repo -> IO Bool
exists ref = runBool
- [Param "show-ref", Param "show-ref", Param "--verify", Param "-q", Param $ show ref]
+ [Param "show-ref", Param "--verify", Param "-q", Param $ show ref]
{- Checks if HEAD exists. It generally will, except for in a repository
- that was just created. -}