Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2022-06-24 11:11:23 +0300
committerGitHub <noreply@github.com>2022-06-24 11:11:23 +0300
commitd427ea18309d0eed79a15f3b6de675122d4766c0 (patch)
tree7114a87a7cc2cab3a959dc34daf828b9ccf5801d /apps/files
parent9d24c2df1a829719d7f8b8b3ca1482d058184a1e (diff)
parent8a3c19f894ddbbe59ccd730c74e56d48910618c4 (diff)
Merge pull request #32918 from nextcloud/backport/32874/stable22
[stable22] Mention missing files subdir
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/lib/Command/Scan.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/lib/Command/Scan.php b/apps/files/lib/Command/Scan.php
index ff96fbf2dab..70b87298612 100644
--- a/apps/files/lib/Command/Scan.php
+++ b/apps/files/lib/Command/Scan.php
@@ -143,7 +143,7 @@ class Scan extends Base {
$scanner->scan($path, $recursive, $homeOnly ? [$this, 'filterHomeMount'] : null);
}
} catch (ForbiddenException $e) {
- $output->writeln("<error>Home storage for user $user not writable</error>");
+ $output->writeln("<error>Home storage for user $user not writable or 'files' subdirectory missing</error>");
$output->writeln('Make sure you\'re running the scan command only as the user the web server runs as');
} catch (InterruptedException $e) {
# exit the function if ctrl-c has been pressed