From 4df922b475de5da93e5addead3b0176f89060685 Mon Sep 17 00:00:00 2001 From: "Yann Esposito (Yogsototh)" Date: Thu, 25 Jun 2020 07:10:00 +0200 Subject: [PATCH] fix archive build --- Shakefile.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shakefile.hs b/Shakefile.hs index a6600e7..595c1ea 100644 --- a/Shakefile.hs +++ b/Shakefile.hs @@ -301,4 +301,4 @@ mkGetPost = newCache $ \path -> do mkGetPosts :: (FilePath -> Action b) -> Rules (() -> Action [b]) mkGetPosts getPost = - newCache $ \() -> mapM getPost =<< getDirectoryFiles "" ["src/posts/**.org"] + newCache $ \() -> mapM getPost =<< getDirectoryFiles "" ["src/posts//*.org"]