diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Tests/Helpers.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Tests/Helpers.hs b/test/Tests/Helpers.hs index 3a8058114..5e3afe0c7 100644 --- a/test/Tests/Helpers.hs +++ b/test/Tests/Helpers.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE CPP #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE TypeSynonymInstances #-} @@ -100,7 +101,11 @@ findPandoc = do "test-pandoc" : "build" : ps -> joinPath (reverse ps) </> "build" </> "pandoc" _ -> error $ "findPandoc: could not find pandoc executable") +#ifdef _WINDOWS + </> "pandoc" <.> "exe" +#else </> "pandoc" +#endif found <- doesFileExist pandocPath if found then return pandocPath |