Skip to content

Commit

Permalink
list files which could not be decrypted
Browse files Browse the repository at this point in the history
Signed-off-by: Bjoern Schiessle <[email protected]>
  • Loading branch information
schiessle committed Dec 14, 2018
1 parent 51f13a7 commit a2eaf48
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/private/Encryption/DecryptAll.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ public function decryptAll(InputInterface $input, OutputInterface $output, $user
$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('');
}
Expand Down

0 comments on commit a2eaf48

Please sign in to comment.