MAIN can't actually take IO arguments

This commit is contained in:
rhiannon morris 2023-11-21 23:21:15 +01:00
parent 4093b1ceda
commit 4242dfe096
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ unit sub MAIN(
Bool :n(:$dry-run) = False,
Bool :v(:$verbose) = False,
#| out dir, default ./out
IO :o(:$outdir) = 'out'.IO,
IO(Str) :o(:$outdir) = 'out'.IO,
#| defaults to all *.png & *.jpg files in the current dir
*@files,
);