Skip to content

Commit d596048

Browse files
committed
Fix commercialhaskell#6581 Add stack -h
1 parent 01b0b13 commit d596048

File tree

6 files changed

+17
-14
lines changed

6 files changed

+17
-14
lines changed

ChangeLog.md

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Other enhancements:
6363
Stack is available in YAML configuration files.
6464
* Add the `ls globals` command to list all global packages for the version of
6565
GHC specified by the snapshot.
66+
* Add `stack -h` (equivalent to `stack --help`).
6667

6768
Bug fixes:
6869

doc/GUIDE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ package sets called __snapshots__.
3131

3232
Stack has also been designed from the ground up to be user friendly, with an
3333
intuitive, discoverable command line interface. For many users, simply
34-
downloading Stack and reading `stack --help` will be enough to get up and
35-
running. This guide provides a more gradual tour for users who prefer that
34+
downloading Stack and reading `stack --help` (or `-h`) will be enough to get up
35+
and running. This guide provides a more gradual tour for users who prefer that
3636
learning style.
3737

3838
To build your project, Stack uses a project-level configuration file, named
@@ -830,7 +830,7 @@ understand why rebuilding may occur at different points.
830830

831831
## The build synonyms
832832

833-
Let's look at a subset of the `stack --help` output:
833+
Let's look at a subset of the `stack --help` (or `-h`) output:
834834

835835
~~~text
836836
build Build the package(s) in this directory/configuration

doc/global_flags.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ Default: `https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots
355355
The `--snapshot-location-base <url>` command option specifies the base location
356356
of snapshots.
357357

358-
## `--help` command flag
358+
## `--help` or `-h` command flags
359359

360-
If Stack is passed the `--help` command flag, it will output help for the
361-
command.
360+
If Stack is passed the `--help` (or `-h`) command flag, it will output help for
361+
the command.

doc/other_resources.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
There are lots of resources available for learning more about Stack:
66

7-
* `stack` or `stack --help` — lists Stack's commands, and flags and options
8-
common to those commands
9-
* `stack <command> --help` — provides help on the particular Stack command,
10-
including flags and options specific to the command
7+
* `stack`, `stack --help` (or `-h`) — lists Stack's commands, and flags and
8+
options common to those commands
9+
* `stack <command> --help` (or `-h`) — provides help on the particular Stack
10+
command, including flags and options specific to the command
1111
* `stack --version` — identify the version and Git hash of the Stack executable
1212
* `--verbose` (or `-v`) — much more info about internal operations (useful for
1313
bug reports)

src/Options/Applicative/Complicated.hs

+4-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ import Control.Monad.Trans.Writer ( runWriter, tell )
2020
import Options.Applicative
2121
( Parser, ParserFailure, ParserHelp, ParserResult (..)
2222
, abortOption, command, execParserPure, footer, fullDesc
23-
, handleParseResult, header, help, info, infoOption, long
24-
, metavar, noBacktrack, prefs, progDesc, showHelpOnEmpty
25-
, hsubparser
23+
, handleParseResult, header, help, hsubparser, info
24+
, infoOption, long, metavar, noBacktrack, prefs, progDesc
25+
, short, showHelpOnEmpty
2626
)
2727
import Options.Applicative.Builder.Extra ( showHelpText )
2828
import Stack.Prelude
@@ -186,4 +186,5 @@ helpOption :: Parser (a -> a)
186186
helpOption =
187187
abortOption showHelpText $
188188
long "help"
189+
<> short 'h'
189190
<> help "Show this help text."

src/Stack/Constants.hs

+2-1
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,8 @@ isStackUploadDisabled = STACK_DISABLE_STACK_UPLOAD
701701
-- | The footer to the help for Stack's subcommands
702702
globalFooter :: String
703703
globalFooter =
704-
"Command 'stack --help' for global options that apply to all subcommands."
704+
"Command 'stack --help' (or '-h') for global options that apply to all "
705+
<> "subcommands."
705706

706707
-- | The type for GitHub REST API HTTP \'Basic\' authentication.
707708
gitHubBasicAuthType :: ByteString

0 commit comments

Comments
 (0)