Log a warning for the CLI install command if the CAN_INSTALL file still exists at the end of the installation. This matches the warning logged by the web installer.
Signed-off-by: Alex Harpin <development@landsofshadow.co.uk>
$this->printErrors($output, $errors);
return 1;
}
+ if ($setupHelper->canInstallExists()) {
+ $output->writeln('<warn>Could not remove CAN_INSTALL from the config folder. Please remove this file manually.</warn>');
+ }
$output->writeln("Nextcloud was successfully installed");
return 0;
}