list files which could not be decrypted

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
Bjoern Schiessle 2018-12-14 12:00:49 +01:00
parent 51f13a7e9c
commit a2eaf48f6f
No known key found for this signature in database
GPG Key ID: 2378A753E2BF04F6
1 changed files with 3 additions and 0 deletions

View File

@ -105,6 +105,9 @@ class DecryptAll {
$this->output->writeln('maybe the user is not set up in a way that supports this operation: ');
foreach ($this->failed as $uid => $paths) {
$this->output->writeln(' ' . $uid);
foreach ($paths as $path) {
$this->output->writeln(' ' . $path);
}
}
$this->output->writeln('');
}