summaryrefslogtreecommitdiff
path: root/GitRepo.hs
diff options
context:
space:
mode:
Diffstat (limited to 'GitRepo.hs')
-rw-r--r--GitRepo.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/GitRepo.hs b/GitRepo.hs
index 0e87c9526..d0fac96c1 100644
--- a/GitRepo.hs
+++ b/GitRepo.hs
@@ -191,8 +191,7 @@ gitCommandLine repo params = assertLocal repo $
{- Runs git in the specified repo. -}
run :: Repo -> [String] -> IO ()
run repo params = assertLocal repo $ do
- r <- safeSystem "git" (gitCommandLine repo params)
- return ()
+ safeSystem "git" (gitCommandLine repo params)
{- Runs a git subcommand and returns its output. -}
pipeRead :: Repo -> [String] -> IO String