yesod devel catches all message file changes (#404)

This commit is contained in:
Michael Snoyman 2012-08-17 07:15:04 +03:00
parent 5da6d0d9ea
commit 83b10c4959

View File

@ -138,7 +138,7 @@ determineDeps x = do
go (Just (StaticFiles fp, _)) = getFolderContents fp
go (Just (Hamlet, f)) = return [f, "templates/" ++ f ++ ".hamlet"]
go (Just (Verbatim, f)) = return [f]
go (Just (Messages f, _)) = return [f]
go (Just (Messages f, _)) = getFolderContents f
go Nothing = return []
parser = do
@ -164,9 +164,9 @@ determineDeps x = do
_ <- A.string "\" \""
x' <- A.many1 $ A.satisfy (/= '"')
_ <- A.string "\" \""
y <- A.many1 $ A.satisfy (/= '"')
_y <- A.many1 $ A.satisfy (/= '"')
_ <- A.string "\""
return $ Messages $ concat [x', "/", y, ".msg"])
return $ Messages $ concat x'
case ty of
Messages{} -> return $ Just (ty, "")
StaticFiles{} -> return $ Just (ty, "")