Merge pull request #13074 from nextcloud/improve-decrypt-all

improve decrypt all process: list files which could not be decrypted
This commit is contained in:
Morris Jobke 2019-01-02 16:35:48 +01:00 committed by GitHub
commit 273849a7e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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('');
}