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:
authorJoas Schilling <coding@schilljs.com>2016-09-12 16:51:33 +0300
committerJoas Schilling <coding@schilljs.com>2016-09-13 11:51:48 +0300
commit1675542df4a1cfb203dfcbe2393b559577043803 (patch)
tree9744e7177478735dd7ff0ffa17e69f2a49df847a /core/Command/Maintenance
parent0543661064b00c27c2e9a1780acf34c8a364f6ce (diff)
Display an error when updating .htaccess failed
Diffstat (limited to 'core/Command/Maintenance')
-rw-r--r--core/Command/Maintenance/UpdateHtaccess.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/core/Command/Maintenance/UpdateHtaccess.php b/core/Command/Maintenance/UpdateHtaccess.php
index 21850786200..89eeb7ccf5b 100644
--- a/core/Command/Maintenance/UpdateHtaccess.php
+++ b/core/Command/Maintenance/UpdateHtaccess.php
@@ -38,8 +38,12 @@ class UpdateHtaccess extends Command {
}
protected function execute(InputInterface $input, OutputInterface $output) {
- \OC\Setup::updateHtaccess();
- $output->writeln('.htaccess has been updated');
- return 0;
+ if (\OC\Setup::updateHtaccess()) {
+ $output->writeln('.htaccess has been updated');
+ return 0;
+ } else {
+ $output->writeln('<error>Error updating .htaccess file, not enough permissions?</error>');
+ return 1;
+ }
}
}