diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-03-20 17:18:29 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-03-20 17:18:29 +0100 |
commit | 241efb1614364b136dfdc4f23e0661d2f34ade24 (patch) | |
tree | 08ee0fa0ce2d9a70ee71b18f1b6ba4240d0dc903 | |
parent | 9d95ef483d5ae251a5fae3c693507746dc1a2d16 (diff) | |
download | hakyll-241efb1614364b136dfdc4f23e0661d2f34ade24.tar.gz |
Fix storing path
-rw-r--r-- | src/Hakyll/Core/Store.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Hakyll/Core/Store.hs b/src/Hakyll/Core/Store.hs index 50ffa90..be1b4a7 100644 --- a/src/Hakyll/Core/Store.hs +++ b/src/Hakyll/Core/Store.hs @@ -53,7 +53,7 @@ addToMap store path value = -- makePath :: Store -> String -> Identifier -> FilePath makePath store name identifier = - storeDirectory store </> name </> toFilePath identifier </> ".hakyllstore" + storeDirectory store </> name </> toFilePath identifier </> "hakyllstore" -- | Store an item -- |