Skip to content

Commit

Permalink
Merge pull request #15 from JPMoresmau/master
Browse files Browse the repository at this point in the history
The first bug is blocking, the other one is to build on GHC 7.2
  • Loading branch information
serras committed Jan 15, 2012
2 parents b4131a9 + 4e994d7 commit 5e763af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scion-browser.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: scion-browser
version: 0.2.1
version: 0.2.2
cabal-version: >= 1.8
build-type: Simple
license: BSD3
Expand Down
2 changes: 1 addition & 1 deletion src/Scion/PersistentBrowser/DbTypes.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# LANGUAGE QuasiQuotes, TemplateHaskell, TypeFamilies, OverloadedStrings, GADTs,FlexibleContexts #-}
{-# LANGUAGE QuasiQuotes, TemplateHaskell, TypeFamilies, OverloadedStrings, GADTs, FlexibleContexts, EmptyDataDecls #-}

module Scion.PersistentBrowser.DbTypes where

Expand Down
3 changes: 1 addition & 2 deletions src/Scion/PersistentBrowser/Parser.hs
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ parseDirectoryFiles dir tmpdir =
do contents' <- getDirectoryContents dir
let contents = map (\d -> dir </> d) (filterDots contents')
files <- filterM doesFileExist contents
fPackages <- mapM (\fname -> do putChar '.'
hFlush stdout
fPackages <- mapM (\fname -> do hPutChar stderr '.' >> hFlush stderr
p <- parseHoogleFile fname
return (fname, p) )
files
Expand Down

0 comments on commit 5e763af

Please sign in to comment.