From 16243b997202d13f50437b3c854d8e35e8f78dd3 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 17 Oct 2013 19:39:22 -0400 Subject: [PATCH] missing import --- Git/Command.hs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Git/Command.hs b/Git/Command.hs index 6fe75f1d40..6b9e1656a1 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]