diff options
author | Georg Ehrke <developer@georgehrke.com> | 2019-06-14 09:16:59 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-06-25 14:53:12 +0200 |
commit | d814089c6affbb1d6fe08e6cc4c9a999d770f45b (patch) | |
tree | 8cf5adcb5ec9e6764c49b16e514067b0e3e46518 /core/Command/Integrity | |
parent | 335af0c46c0034ea9052a90fa2b43a0b9bc985e7 (diff) | |
download | nextcloud-server-d814089c6affbb1d6fe08e6cc4c9a999d770f45b.tar.gz nextcloud-server-d814089c6affbb1d6fe08e6cc4c9a999d770f45b.zip |
Fix appid argument for integrity:check-app
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'core/Command/Integrity')
-rw-r--r-- | core/Command/Integrity/CheckApp.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/Integrity/CheckApp.php b/core/Command/Integrity/CheckApp.php index d0dfbcada3a..1c71286195a 100644 --- a/core/Command/Integrity/CheckApp.php +++ b/core/Command/Integrity/CheckApp.php @@ -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.'); } |