We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
mconcat
1 parent ab9a25d commit 8283421Copy full SHA for 8283421
1 file changed
cardano-wasm/app/Main.hs
@@ -13,10 +13,12 @@ parser :: Parser CmdArgs
13
parser =
14
CmdArgs
15
<$> strOption
16
- ( long "output-dir"
17
- <> short 'o'
18
- <> metavar "OUTPUT_DIR"
19
- <> help "Output directory for the TypeScript declaration files (it must exist)"
+ ( mconcat
+ [ long "output-dir"
+ , short 'o'
+ , metavar "OUTPUT_DIR"
20
+ , help "Output directory for the TypeScript declaration files (it must exist)"
21
+ ]
22
)
23
24
main :: IO ()
0 commit comments