Browse Source

Do not show "Not installed warning" during occ install

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Morris Jobke 6 years ago
parent
commit
0d9f73a814
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/private/Console/Application.php

+ 1 - 1
lib/private/Console/Application.php

@@ -127,7 +127,7 @@ class Application {
 						}
 					}
 				}
-			} else if ($input->getArgument('command') !== '_completion') {
+			} else if ($input->getArgument('command') !== '_completion' && $input->getArgument('command') !== 'maintenance:install') {
 				$output->writeln("Nextcloud is not installed - only a limited number of commands are available");
 			}
 		} catch(NeedsUpdateException $e) {