summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-03-20 17:18:29 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-03-20 17:18:29 +0100
commit241efb1614364b136dfdc4f23e0661d2f34ade24 (patch)
tree08ee0fa0ce2d9a70ee71b18f1b6ba4240d0dc903
parent9d95ef483d5ae251a5fae3c693507746dc1a2d16 (diff)
downloadhakyll-241efb1614364b136dfdc4f23e0661d2f34ade24.tar.gz
Fix storing path
-rw-r--r--src/Hakyll/Core/Store.hs2
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
--