Browse Source

Fix appid argument for integrity:check-app

Signed-off-by: Georg Ehrke <developer@georgehrke.com>
tags/v17.0.0beta1
Georg Ehrke 5 years ago
parent
commit
d814089c6a
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      core/Command/Integrity/CheckApp.php

+ 2
- 2
core/Command/Integrity/CheckApp.php View File

@@ -45,7 +45,7 @@ class CheckApp extends Base {
parent::__construct();
$this->checker = $checker;
}
/**
* {@inheritdoc }
*/
@@ -54,7 +54,7 @@ class CheckApp extends Base {
$this
->setName('integrity:check-app')
->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.');
}


Loading…
Cancel
Save