diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/App/Raps2.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/App/Raps2.pm b/lib/App/Raps2.pm index c416592..6acac7f 100644 --- a/lib/App/Raps2.pm +++ b/lib/App/Raps2.pm @@ -376,8 +376,9 @@ Lists all saved passwords and their logins and urls sub cmd_list { my ($self) = @_; + my @files = read_dir($self->{xdg_data}); - for my $file (read_dir($self->{xdg_data})) { + for my $file (sort @files) { my %key = $self->file_to_hash($self->{xdg_data} . "/${file}"); $self->ui->list( ['Account', $file], |