aboutsummaryrefslogtreecommitdiff
path: root/Git/Command.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-10-17 19:51:16 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-10-17 19:51:16 -0400
commit17f5cdf92b820897aa0912aad678fbec08728156 (patch)
tree47ef26053d61f11734853b0fe3567b6487092f5f /Git/Command.hs
parent25cfafd987cd82b81652681f30b38638801458fe (diff)
fix
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 1cefacf8e..9d05e0d17 100644
--- a/Git/Command.hs
+++ b/Git/Command.hs
@@ -30,7 +30,7 @@ gitCommandLine params Repo { location = l@(Local _ _ ) } = setdir : settree ++ p
#ifdef mingw32_HOST_OS
-- despite running on windows, msysgit wants a unix-formatted path
gitpath s
- | isAbsulute s = "/" ++ dropDrive (toInternalGitPath s)
+ | isAbsolute s = "/" ++ dropDrive (toInternalGitPath s)
| otherwise = s
#else
gitpath = id