diff options
author | Andinus <andinus@nand.sh> | 2021-02-28 20:17:51 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2021-02-28 20:17:51 +0530 |
commit | 3e6bfe51a2195397e18a484ffa50011cb88f29d4 (patch) | |
tree | c058f3ef19203b4724ea6eb8e85ae6e5b1a3d80c | |
parent | 07d3e5bc170b84471144649216f42686e3ef2b43 (diff) | |
download | octans-3e6bfe51a2195397e18a484ffa50011cb88f29d4.tar.gz |
Print complete help
Previously it wouldn't print the input file format but would only print the default $*USAGE.
-rw-r--r-- | lib/Octans/CLI.rakumod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Octans/CLI.rakumod b/lib/Octans/CLI.rakumod index 1c1f0cc..ee7c5c7 100644 --- a/lib/Octans/CLI.rakumod +++ b/lib/Octans/CLI.rakumod @@ -100,5 +100,5 @@ multi sub MAIN ( ) { say "Octans v" ~ $?DISTRIBUTION.meta<version>; } multi sub MAIN ( - Bool :$help #= print help + Bool :h($help) #= print help ) { USAGE(); exit; } |