Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit 9dcb927

Browse files
committed
Fix up GenChangelogs.hs
It compiles and runs, seems to be useful.
1 parent 1179e83 commit 9dcb927

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

GenChangelogs.hs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env cabal
22
{- cabal:
3-
build-depends: base, process, html-conduit, http-conduit, xml-conduit, text
3+
build-depends: base, process, html-conduit, http-conduit, xml-conduit, text, containers
44
-}
55

66
{-# LANGUAGE OverloadedStrings #-}
@@ -21,10 +21,10 @@ main = do
2121
callCommand "git fetch --tags"
2222
tags <- filter (isPrefixOf "0.") . lines <$>
2323
readProcess "git" ["tag", "--list", "--sort=v:refname"] ""
24-
messages <- lines <$> readProcess "git" [ "log",
24+
messages <- lines <$> readProcess "git" [ "log"
2525
, last tags <> "..HEAD"
2626
, "--merges"
27-
, "--revers",
27+
, "--reverse"
2828
, "--pretty=format:\"%s\""
2929
] ""
3030

0 commit comments

Comments
 (0)