Subject: | Wrong check for `type' argument |
The parameter checking for the `type' argument does not allow "tbz".
There are also some inconsistencies in the POD and the code regarding
tbz and tbz2.
Changing the following line
type => { default => '', allow => [qw|tgz tar zip gz bz2 tbz2|] },
to
type => { default => '', allow => [qw|tgz tar zip gz bz2 tbz|] },
made it work for me.
Thanks, Frank