diff options
-rw-r--r-- | Git/Command.hs | 2 |
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 |