diff options
Diffstat (limited to 'Biz/Cli.hs')
-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 |