1
1
mirror of https://github.com/srid/rib.git synced 2024-11-27 01:12:09 +03:00

Use + here

This commit is contained in:
Sridhar Ratnakumar 2019-12-30 19:25:44 -05:00
parent 6867cd9a12
commit 054acd260d

View File

@ -108,7 +108,9 @@ writeFileCached k s = do
cacheKey = ("writeFileCached" :: Text, f)
cacheActionWith cacheKey cacheClosure $ do
writeFile' f $! s
putInfo $ "W " <> f
-- Use a character (like +) that contrasts with what Shake uses (#) for
-- logging modified files being read.
putInfo $ "+ " <> f
-- | Like `getDirectoryFiles` but works with `Path`
getDirectoryFiles' :: Path b Dir -> [Path Rel File] -> Action [Path Rel File]