diff --git a/app/tasks/install.php b/app/tasks/install.php index 99648d1e2..f855a086c 100644 --- a/app/tasks/install.php +++ b/app/tasks/install.php @@ -6,14 +6,12 @@ use Appwrite\Docker\Compose; use Appwrite\Docker\Env; use Utopia\CLI\Console; use Utopia\Config\Config; -use Utopia\Validator\Mock; use Utopia\View; $cli ->task('install') ->desc('Install Appwrite') - ->param('version', APP_VERSION_STABLE, new Mock(), 'Appwrite version', true) - ->action(function ($version) { + ->action(function () { /** * 1. Start - DONE * 2. Check for older setup and get older version - DONE @@ -130,8 +128,7 @@ $cli $templateForCompose ->setParam('httpPort', $httpPort) ->setParam('httpsPort', $httpsPort) - ->setParam('version', $version) - ->setParam('vars', $input) + ->setParam('version', APP_VERSION_STABLE) ; $templateForEnv