summaryrefslogtreecommitdiffstats
path: root/core/Command
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-12-05 22:18:24 +0100
committerLukas Reschke <lukas@statuscode.ch>2016-12-05 22:18:24 +0100
commit60d1e8e63e685a33697cccceb0517db8ca87644f (patch)
treea26103bb8f72d21d3ad5b1766a3dd5ea8cb90952 /core/Command
parent7fe02702b0f5a47714e0ae507d6199d8dbd8f39c (diff)
downloadnextcloud-server-60d1e8e63e685a33697cccceb0517db8ca87644f.tar.gz
nextcloud-server-60d1e8e63e685a33697cccceb0517db8ca87644f.zip
Check for nextcloud version as well
The code checker didn't consider the "nextcloud" version before, resulting in fails such as https://travis-ci.org/nextcloud/richdocuments/jobs/181470760#L415-L416 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/App/CheckCode.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/App/CheckCode.php b/core/Command/App/CheckCode.php
index bd1bac247a2..aa618b26cec 100644
--- a/core/Command/App/CheckCode.php
+++ b/core/Command/App/CheckCode.php
@@ -135,7 +135,7 @@ class CheckCode extends Command implements CompletionAwareInterface {
});
$infoChecker->listen('InfoChecker', 'missingRequirement', function($minMax) use ($output) {
- $output->writeln("<comment>ownCloud $minMax version requirement missing (will be an error in ownCloud 11 and later)</comment>");
+ $output->writeln("<comment>Nextcloud $minMax version requirement missing (will be an error in Nextcloud 12 and later)</comment>");
});
$infoChecker->listen('InfoChecker', 'duplicateRequirement', function($minMax) use ($output) {