File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ buildOptsParser cmd = BuildOptsCLI
42
42
( long " ghc-options"
43
43
<> metavar " OPTIONS"
44
44
<> completer ghcOptsCompleter
45
- <> help " Additional options passed to GHC"
45
+ <> help " Additional options passed to GHC (can be specified \
46
+ \multiple times)"
46
47
))
47
48
)
48
49
<*> flagsParser
Original file line number Diff line number Diff line change @@ -43,15 +43,17 @@ ghciOptsParser = GhciOpts
43
43
( long " ghci-options"
44
44
<> metavar " OPTIONS"
45
45
<> completer ghcOptsCompleter
46
- <> help " Additional options passed to GHCi"
46
+ <> help " Additional options passed to GHCi (can be specified \
47
+ \multiple times)"
47
48
))
48
49
)
49
50
<*> ( concat
50
51
<$> many (argsOption
51
52
( long " ghc-options"
52
53
<> metavar " OPTIONS"
53
54
<> completer ghcOptsCompleter
54
- <> help " Additional options passed to both GHC and GHCi"
55
+ <> help " Additional options passed to both GHC and GHCi (can be \
56
+ \specified multiple times)"
55
57
))
56
58
)
57
59
<*> flagsParser
Original file line number Diff line number Diff line change @@ -66,7 +66,8 @@ scriptOptsParser = ScriptOpts
66
66
( long " ghc-options"
67
67
<> metavar " OPTIONS"
68
68
<> completer ghcOptsCompleter
69
- <> help " Additional options passed to GHC"
69
+ <> help " Additional options passed to GHC (can be specified multiple \
70
+ \times)"
70
71
))
71
72
<*> many (option extraDepRead
72
73
( long " extra-dep"
You can’t perform that action at this time.
0 commit comments