diff options
author | Simon L <szaimen@e.mail.de> | 2023-11-20 08:14:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-20 08:14:57 +0100 |
commit | 753e7c2dfff1b7c760384688ec378942bbd59e4a (patch) | |
tree | baa0808a450d3c2379cc39305483b2c402f7c0c3 /core | |
parent | da162190f4acf807896af4287c76935a7928666e (diff) | |
parent | 3f6caa46f34a1575dc332f9ce1a2edaba99a1b11 (diff) | |
download | nextcloud-server-753e7c2dfff1b7c760384688ec378942bbd59e4a.tar.gz nextcloud-server-753e7c2dfff1b7c760384688ec378942bbd59e4a.zip |
Merge pull request #41544 from nextcloud/enh/noid/updatehtaccess-disk-space-check
Diffstat (limited to 'core')
-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; } } |