diff --git a/cabal-install/Distribution/Client/Setup.hs b/cabal-install/Distribution/Client/Setup.hs index 2377f6d92c901e70e1cf625d393d5b96c9bfe3c4..4c56fb0c3013f141174bc86ed4f7c1a346662a89 100644 --- a/cabal-install/Distribution/Client/Setup.hs +++ b/cabal-install/Distribution/Client/Setup.hs @@ -189,6 +189,9 @@ globalCommand commands = CommandUI { , "new-test" , "new-bench" , "new-haddock" + , "new-exec" + , "new-update" + , "new-install" ] maxlen = maximum $ [length name | (name, _) <- cmdDescs] align str = str ++ replicate (maxlen - length str) ' ' @@ -256,6 +259,9 @@ globalCommand commands = CommandUI { , addCmd "new-bench" , addCmd "new-freeze" , addCmd "new-haddock" + , addCmd "new-exec" + , addCmd "new-update" + , addCmd "new-install" ] ++ if null otherCmds then [] else par :startGroup "other" :[addCmd n | n <- otherCmds])