Skip to content

Commit

Permalink
Reorder cabal help commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ffaf1 committed Aug 29, 2022
1 parent 76f6d3c commit 88277ab
Showing 1 changed file with 25 additions and 17 deletions.
42 changes: 25 additions & 17 deletions cabal-install/src/Distribution/Client/Setup.hs
Original file line number Diff line number Diff line change
Expand Up @@ -238,41 +238,49 @@ globalCommand commands = CommandUI {
"Commands:\n"
++ unlines (
[ startGroup "global"
, addCmd "update"
, addCmd "install"
, par
, addCmd "user-config"
, addCmd "help"
, addCmd "info"
, par
, startGroup "package database"
, addCmd "update"
, addCmd "list"
, addCmd "fetch"
, addCmd "user-config"
, addCmd "info"
, par
, startGroup "package"
, addCmd "get"
, addCmd "unpack"
, startGroup "initialization and download"
, addCmd "init"
, addCmd "fetch"
, addCmd "get"
, par
, startGroup "project configuration"
, addCmd "configure"
, addCmd "freeze"
, addCmd "gen-bounds"
, addCmd "outdated"
, par
, startGroup "project building and installing"
, addCmd "build"
, addCmd "install"
, addCmd "haddock"
, addCmd "haddock-project"
, addCmd "clean"
, par
, addCmd "run"
, startGroup "running and testing"
, addCmd "list-bin"
, addCmd "repl"
, addCmd "test"
, addCmd "run"
, addCmd "bench"
, addCmd "test"
, addCmd "exec"
, par
, startGroup "sanity checks and shipping"
, addCmd "check"
, addCmd "sdist"
, addCmd "upload"
, addCmd "report"
, par
, addCmd "freeze"
, addCmd "gen-bounds"
, addCmd "outdated"
, addCmd "haddock"
, startGroup "deprecated"
, addCmd "unpack"
, addCmd "hscolour"
, addCmd "exec"
, addCmd "list-bin"
, par
, startGroup "new-style projects (forwards-compatible aliases)"
, addCmd "v2-build"
Expand Down

0 comments on commit 88277ab

Please sign in to comment.