Merge pull request #15956 from nextcloud/bugfix/noid/fix_checkapp_occ

Fix appid argument for integrity:check-app
This commit is contained in:
Roeland Jago Douma 2019-06-25 21:36:33 +02:00 committed by GitHub
commit 0f0dfc837e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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.');
} }