From 61ecf766442abb509d0c8d0ca4b4628c479d70ba Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 12 Feb 2014 14:32:47 -0400 Subject: [PATCH] unbreak the build --- Git/Command.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Git/Command.hs b/Git/Command.hs index a4e5c1a4a7..0fa3d1b3b6 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. -}