diff options
author | Ben Sima <ben@bsima.me> | 2021-01-19 12:19:53 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-01-22 07:19:33 -0500 |
commit | efa278aa35816f2906e288ffef82d1100181b1e1 (patch) | |
tree | d892f36d206aba6a1889189e7e3c7ba76176f798 /Biz | |
parent | 84e690b6f1c425b4a292f8dcb9be10a40fb466ae (diff) |
Print help message with --help
Diffstat (limited to 'Biz')
-rw-r--r-- | Biz/Cli.hs | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -37,7 +37,10 @@ main Plan {..} = >>= \args -> if args `has` Docopt.command "test" then runTests test - else move args + else + if args `has` Docopt.longOption "help" + then Docopt.exitWithUsage help + else move args runTests :: Tasty.TestTree -> IO () runTests tree = do |