Fix appid argument for integrity:check-app
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
This commit is contained in:
parent
335af0c46c
commit
d814089c6a
|
@ -45,7 +45,7 @@ class CheckApp extends Base {
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
$this->checker = $checker;
|
$this->checker = $checker;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc }
|
* {@inheritdoc }
|
||||||
*/
|
*/
|
||||||
|
@ -54,7 +54,7 @@ class CheckApp extends Base {
|
||||||
$this
|
$this
|
||||||
->setName('integrity:check-app')
|
->setName('integrity:check-app')
|
||||||
->setDescription('Check integrity of an app using a signature.')
|
->setDescription('Check integrity of an app using a signature.')
|
||||||
->addArgument('appid', null, InputArgument::REQUIRED, 'Application to check')
|
->addArgument('appid', InputArgument::REQUIRED, 'Application to check')
|
||||||
->addOption('path', null, InputOption::VALUE_OPTIONAL, 'Path to application. If none is given it will be guessed.');
|
->addOption('path', null, InputOption::VALUE_OPTIONAL, 'Path to application. If none is given it will be guessed.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue