Skip to content

Commit

Permalink
Rectify the documentation for --newest and --oldest
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleidukos committed Sep 6, 2024
1 parent b279e8d commit fb0c1fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ parseOptions =
<*> optional (strOption (long "ubuntu-version" <> metavar "VERSION" <> help "Enable the Ubuntu runner with the selected version"))
<*> switch (long "windows" <> help "(legacy) Enable the Windows runner's latest version")
<*> optional (strOption (long "windows-version" <> metavar "VERSION" <> help "Enable the Windows runner with the selected version"))
<*> switch (long "newest" <> help "Enable only the newest GHC version found in the cabal file. Can be combined with --oldest")
<*> switch (long "oldest" <> help "Enable only the oldest GHC version found in the cabal file. Can be combined with --newest")
<*> switch (long "newest" <> help "Enable only the newest GHC version found in the cabal file")
<*> switch (long "oldest" <> help "Enable only the oldest GHC version found in the cabal file")
<**> simpleVersioner (showVersion version)

runOptions :: Options -> Eff [Console, FileSystem, Error ProcessingError, IOE] ByteString
Expand Down

0 comments on commit fb0c1fa

Please sign in to comment.