summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-06-25 21:36:33 +0200
committerGitHub <noreply@github.com>2019-06-25 21:36:33 +0200
commit0f0dfc837e24e30b461e60dc7ec93b16e55c9bb3 (patch)
treed3cf31ae636e28cfb9f472f840202878ce5ceff8
parentce642fb0e2fe87eebf536604c909e305fa3638bb (diff)
parentd814089c6affbb1d6fe08e6cc4c9a999d770f45b (diff)
downloadnextcloud-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.php4
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.');
}