diff options
author | Joey Hess <joey@kitenet.net> | 2013-10-17 19:39:22 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-10-17 19:39:22 -0400 |
commit | 3e7d7ebe11caa93afab6af387443bb2819664be0 (patch) | |
tree | f105fa46a8c3cb110d2b695911df5cf29b2d1ce0 /Git/Command.hs | |
parent | e549a18c2fe5bfb83185afbc81d5b8f88363f842 (diff) |
missing import
Diffstat (limited to 'Git/Command.hs')
-rw-r--r-- | Git/Command.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Git/Command.hs b/Git/Command.hs index 6fe75f1d4..6b9e1656a 100644 --- a/Git/Command.hs +++ b/Git/Command.hs @@ -15,6 +15,9 @@ import Common import Git import Git.Types import qualified Utility.CoProcess as CoProcess +#ifdef mingw32_HOST_OS +import Git.Filename +#endif {- Constructs a git command line operating on the specified repo. -} gitCommandLine :: [CommandParam] -> Repo -> [CommandParam] |