diff options
author | Andinus <andinus@nand.sh> | 2021-08-15 23:21:41 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2021-08-15 23:21:41 +0530 |
commit | 010d295d4186b66849c5e6c8a49c2e9393ea2706 (patch) | |
tree | aeadec0b9f1cac40b420b6fe27941c6a34afb416 | |
parent | 7111f8df40f1677ed5ca580247e021f13c828c4b (diff) | |
download | taurus-010d295d4186b66849c5e6c8a49c2e9393ea2706.tar.gz |
Remove testing code, Update version print
-rw-r--r-- | lib/Taurus/CLI.rakumod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Taurus/CLI.rakumod b/lib/Taurus/CLI.rakumod index 4647c1c..04ef4aa 100644 --- a/lib/Taurus/CLI.rakumod +++ b/lib/Taurus/CLI.rakumod @@ -20,7 +20,7 @@ multi sub MAIN ( # 3: Timestamp, 4: Duration, 5: Sim used. # Turn the Hash to an Array. - @logs = @($log.IO.lines.skip[^200].hyper.map({$p.parse($_)})>>.{0..4} + @logs = @($log.IO.lines.skip.hyper.map({$p.parse($_)})>>.{0..4} # Discard invalid phone numbers. .grep(*.[1].chars >= $digits)); @@ -119,4 +119,4 @@ multi sub MAIN ( multi sub MAIN( Bool :$version #= print version -) is export { put "Lacerta v" ~ $?DISTRIBUTION.meta<version>; } +) is export { put "Taurus v" ~ $?DISTRIBUTION.meta<version>; } |