diff options
author | Simon L <szaimen@e.mail.de> | 2023-11-17 11:32:31 +0100 |
---|---|---|
committer | Simon L <szaimen@e.mail.de> | 2023-11-17 15:22:53 +0100 |
commit | 3f6caa46f34a1575dc332f9ce1a2edaba99a1b11 (patch) | |
tree | 7f98bdf264c539721a3c788ff9761cb38b61da3e | |
parent | 4c522f0f654ccbd1f48935a7a99324600f0a1c16 (diff) | |
download | nextcloud-server-3f6caa46f34a1575dc332f9ce1a2edaba99a1b11.tar.gz nextcloud-server-3f6caa46f34a1575dc332f9ce1a2edaba99a1b11.zip |
document error
Signed-off-by: Simon L <szaimen@e.mail.de>
-rw-r--r-- | core/Command/Maintenance/UpdateHtaccess.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Maintenance/UpdateHtaccess.php b/core/Command/Maintenance/UpdateHtaccess.php index 67c6db22b21..9243567afb4 100644 --- a/core/Command/Maintenance/UpdateHtaccess.php +++ b/core/Command/Maintenance/UpdateHtaccess.php @@ -39,7 +39,7 @@ class UpdateHtaccess extends Command { $output->writeln('.htaccess has been updated'); return 0; } else { - $output->writeln('<error>Error updating .htaccess file, not enough permissions or "overwrite.cli.url" set to an invalid URL?</error>'); + $output->writeln('<error>Error updating .htaccess file, not enough permissions, not enough free space or "overwrite.cli.url" set to an invalid URL?</error>'); return 1; } } |