We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 078c32e commit 3aaa591Copy full SHA for 3aaa591
php/EE/Runner.php
@@ -64,10 +64,10 @@ private function init_ee() {
64
65
if (
66
! empty( $this->arguments ) &&
67
- ( ! in_array( $this->arguments[0], [ 'cli', 'help' ], true ) ||
68
- $this->arguments === [ 'cli', 'update' ] ||
69
- $this->arguments === [ 'cli', 'self-uninstall' ] )
70
- ) {
+ ( 'help' !== $this->arguments[0] )
+ && $this->arguments !== [ 'cli', 'version' ]
+ )
+ {
71
72
// Minimum requirement checks.
73
$docker_running = 'docker ps > /dev/null';
0 commit comments