aboutsummaryrefslogtreecommitdiff
path: root/Git/Command.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-02-12 14:32:47 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-02-12 14:34:01 -0400
commit979255a08a368cc46add5e32dea2b5e9a187e3bf (patch)
tree6ecbf5d1c9361adf30b4b8c53d119a6d05f9805f /Git/Command.hs
parent4ed543488386fc80eb4acdddc40561dba9ffe6e5 (diff)
unbreak the build
Diffstat (limited to 'Git/Command.hs')
-rw-r--r--Git/Command.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Git/Command.hs b/Git/Command.hs
index a4e5c1a4a..0fa3d1b3b 100644
--- a/Git/Command.hs
+++ b/Git/Command.hs
@@ -28,7 +28,7 @@ gitCommandLine params r@(Repo { location = l@(Local _ _ ) }) =
setdir = Param $ "--git-dir=" ++ gitdir l
settree = case worktree l of
Nothing -> []
- Just t -> [Param $ "--work-tree=" ++ gitpath t]
+ Just t -> [Param $ "--work-tree=" ++ t]
gitCommandLine _ repo = assertLocal repo $ error "internal"
{- Runs git in the specified repo. -}