Skip to content

Commit

Permalink
Changes from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
sol committed Apr 21, 2015
1 parent 0702aae commit e558be0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion mk-index.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -o errexit

runhaskell dumpindex.hs Prelude.Compat | sort > check/Prelude.Compat.index
runhaskell dumpindex.hs Data.Foldable.Compat | sort > check/Data.Foldable.Compat.index
runhaskell dumpindex.hs Data.Traversable.Compat | sort > check/Data.Traversable.Compat.index
runhaskell dumpindex.hs Data.List.Compat | sort > check/Data.List.Compat.index
4 changes: 3 additions & 1 deletion run-check.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/bash

set -o errexit

runhaskell dumptypes.hs Prelude.Compat | typediff check/Prelude.Compat.types -
runhaskell dumptypes.hs Control.Monad.Compat | typediff check/Control.Monad.Compat.types -
runhaskell dumptypes.hs Data.Foldable.Compat | typediff check/Data.Foldable.Compat.types -
runhaskell dumptypes.hs Data.Traversable.Compat | typediff check/Data.Traversable.Compat.types -
runhaskell dumptypes.hs Data.List.Compat | typediff check/Data.List.Compat.types -

0 comments on commit e558be0

Please sign in to comment.