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