This commit is contained in:
Simon Michael 2016-02-21 02:37:59 -08:00
parent 5acb82e627
commit 931a1d5b9e
2 changed files with 4 additions and 5 deletions

View File

@ -64,11 +64,10 @@ import Data.List
-- import Data.Map (findWithDefault)
import Data.Maybe
import Data.Ord
import Safe (headMay)
import Safe (headMay, headDef)
import Data.Time.Calendar
import Data.Time.LocalTime
import Data.Tree
import Safe (headDef)
import System.Time (ClockTime(TOD))
import Test.HUnit
import Text.Printf

View File

@ -143,4 +143,4 @@ main = do
-- can't do anything here, hakyll exits
linkReadmeToIndex = system "ln -sf README.html _site/index.html" >> return ()
linkReadmeToIndex = void $ system "ln -sf README.html _site/index.html"