From: Michael Orlitzky Date: Wed, 24 Aug 2022 13:48:59 +0000 (-0400) Subject: test/Doctests.hs: fix include paths with newer cabal. X-Git-Tag: 0.0.2~5 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=list-remote-forwards.git;a=commitdiff_plain;h=72236450b116292551daec5255d4915ff431bf4b test/Doctests.hs: fix include paths with newer cabal. --- diff --git a/test/Doctests.hs b/test/Doctests.hs index 81bc620..eb8b671 100644 --- a/test/Doctests.hs +++ b/test/Doctests.hs @@ -10,4 +10,7 @@ find_sources = find always (extension ==? ".hs") "src/" main :: IO () main = do sources <- find_sources - doctest $ ["-isrc", "-idist/build/autogen"] ++ sources + doctest $ ["-isrc", + "-idist/build/autogen", -- old cabal + "-idist/build/list-remote-forwards/autogen" -- new cabal + ] ++ sources