diff --git a/lib/PostText/Command/argon2.pm b/lib/PostText/Command/argon2.pm index 49bb153..bc2085e 100644 --- a/lib/PostText/Command/argon2.pm +++ b/lib/PostText/Command/argon2.pm @@ -6,7 +6,7 @@ has description => 'Hash a string with Argon2'; has usage => sub ($self) { $self->extract_usage }; sub run($self, @args) { - say $self->app->authenticator->hash_password($_) for @args; + say $self->app->authenticator->hash_password($_) for @args } 1;