From: Michael Orlitzky Date: Sun, 2 Feb 2020 05:40:55 +0000 (-0500) Subject: test/Doctests.hs: update the include path for newer cabals. X-Git-Tag: 0.0.3^0 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailbox-count.git;a=commitdiff_plain;h=d5bc9ecf871b00e1e66706040717e6b48444c05a test/Doctests.hs: update the include path for newer cabals. --- diff --git a/test/Doctests.hs b/test/Doctests.hs index 83bc612..6025a8d 100644 --- a/test/Doctests.hs +++ b/test/Doctests.hs @@ -10,4 +10,8 @@ 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 versions + "-idist/build/mailbox-count/autogen" -- new cabal versions + ] + ++ sources