Fixing ambiguous option.

This commit is contained in:
sergiotarxz 2022-04-20 02:10:59 +02:00
parent d4e05fdb77
commit 2251dda929
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ const my @CHARACTERS => ( 'a' .. 'z', 'A' .. 'Z' );
my ( $opt, $usage ) = describe_options(
'quotausers %o',
[ 'csv|c=s', 'The csv with the emails and usernames', { required => 1 } ],
[ 'size|c=s', 'Assigned size for all users.', { required => 1 } ],
[ 'size|s=s', 'Assigned size for all users.', { required => 1 } ],
[ 'help|h=s', 'Show help', { shortcircuit => 1 } ],
);