module Main where import System.Cmd import System.Exit main = do e <- system "dist/build/bookshelf/bookshelf --css bookshelf.css --bib Documentation/papers.bib Documentation" case e of ExitSuccess -> return () _ -> exitFailure