diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-06-25 21:36:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-25 21:36:33 +0200 |
commit | 0f0dfc837e24e30b461e60dc7ec93b16e55c9bb3 (patch) | |
tree | d3cf31ae636e28cfb9f472f840202878ce5ceff8 | |
parent | ce642fb0e2fe87eebf536604c909e305fa3638bb (diff) | |
parent | d814089c6affbb1d6fe08e6cc4c9a999d770f45b (diff) | |
download | nextcloud-server-0f0dfc837e24e30b461e60dc7ec93b16e55c9bb3.tar.gz nextcloud-server-0f0dfc837e24e30b461e60dc7ec93b16e55c9bb3.zip |
Merge pull request #15956 from nextcloud/bugfix/noid/fix_checkapp_occ
Fix appid argument for integrity:check-app
-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.'); } |