1
0
Fork 0
mirror of synced 2024-06-30 04:00:34 +12:00

remove from install script

This commit is contained in:
Torsten Dittmann 2021-01-29 18:38:57 +01:00
parent a95c763e7e
commit e0f6613b9e

View file

@ -12,8 +12,7 @@ use Utopia\View;
$cli $cli
->task('install') ->task('install')
->desc('Install Appwrite') ->desc('Install Appwrite')
->param('version', APP_VERSION_STABLE, new Mock(), 'Appwrite version', true) ->action(function () {
->action(function ($version) {
/** /**
* 1. Start - DONE * 1. Start - DONE
* 2. Check for older setup and get older version - DONE * 2. Check for older setup and get older version - DONE
@ -130,7 +129,7 @@ $cli
$templateForCompose $templateForCompose
->setParam('httpPort', $httpPort) ->setParam('httpPort', $httpPort)
->setParam('httpsPort', $httpsPort) ->setParam('httpsPort', $httpsPort)
->setParam('version', $version) ->setParam('version', APP_VERSION_STABLE)
->setParam('vars', $input) ->setParam('vars', $input)
; ;