🐙 Templated web page generator for your git repositories
git clone https://github.com/m-col/gitja
Files | Refs | Readme | License

Commit cff5149d25ed12e9ffaf892ab784b121eae6e6ff
Parent: e2b1184cdd9ce7a102dea64fe8aaa4251e7586a3
Author: mcol <mcol@posteo.net>
Date: 2021-09-23 21:55:46 +0100
Committer: mcol <mcol@posteo.net>
Committed: 2021-09-23 21:55:46 +0100

hlint some brackets

src/Templates.hs Modified

@@ -58,7 +58,7 @@
 HTML/CSS/JS files.
 -}
 isTemplate :: FilePath -> IO Bool
-isTemplate path = ((&&) $ isTemplate' path) <$> (doesFileExist path)
+isTemplate path = (&&) (isTemplate' path) <$> doesFileExist path
   where
     p = map toLower path
     isTemplate' :: FilePath -> Bool