diff --git a/core/Command/Maintenance/Install.php b/core/Command/Maintenance/Install.php index c445f2c2f46..c06cffe7dfc 100644 --- a/core/Command/Maintenance/Install.php +++ b/core/Command/Maintenance/Install.php @@ -107,6 +107,9 @@ class Install extends Command { $this->printErrors($output, $errors); return 1; } + if ($setupHelper->canInstallExists()) { + $output->writeln('Could not remove CAN_INSTALL from the config folder. Please remove this file manually.'); + } $output->writeln("Nextcloud was successfully installed"); return 0; }