Merge pull request #21064 from owncloud/fix-occ-install-on-os-x

Allow occ install on OS X - same behaviour as web setup
This commit is contained in:
Thomas Müller 2015-12-09 11:12:53 +01:00
commit ff656e31f1
1 changed files with 6 additions and 1 deletions

View File

@ -68,7 +68,12 @@ class Install extends Command {
$errors = $sysInfo['errors'];
if (count($errors) > 0) {
$this->printErrors($output, $errors);
return 1;
// ignore the OS X setup warning
if(count($errors) !== 1 ||
(string)($errors[0]['error']) !== 'Mac OS X is not supported and ownCloud will not work properly on this platform. Use it at your own risk! ') {
return 1;
}
}
// validate user input