Update Nextcloud app documentation to fix wrong command

The last command to scan for new files after migrating nextcloud data directory lacks the actual command `occ` to make the command work properly.
See: https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/occ_command.html#scan
This commit is contained in:
Void 2024-02-29 19:24:41 +01:00 committed by GitHub
parent b794b7cc98
commit 32f070496c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -195,7 +195,7 @@ Save the file (**CTRL** + **o**) and exit nano (**CTRL** + **c**).
Then run a scan by executing next command as root:
```bash
sudo -u nextcloud php8.1 --define apc.enable_cli=1 files:scan --all
sudo -u nextcloud php8.1 --define apc.enable_cli=1 occ files:scan --all
```
Now the problem is fixed.