summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-02-26 07:38:32 +0100
committerRemi Collet <fedora@famillecollet.com>2015-02-26 07:38:32 +0100
commit915e2013dbc51a9344f3ebb8cd96f164ad73302b (patch)
tree00c2d2ccfca37241ded190ab460325eb139f813f
parent58a0354def1d90c08e181d1064ac0c76fb8a6d59 (diff)
checkpkgist: ignore vendor='kolab', not registered on packagist
-rwxr-xr-xcheckpkgist/checkpkgist.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkpkgist/checkpkgist.php b/checkpkgist/checkpkgist.php
index 2fd55ac..f163353 100755
--- a/checkpkgist/checkpkgist.php
+++ b/checkpkgist/checkpkgist.php
@@ -69,7 +69,7 @@ function run($name, $rpm) {
global $quiet, $verb, $client;
list($owner, $library) = explode('/', $name, 2);
- if ($owner == 'horde') {
+ if (in_array($owner, ['horde', 'kolab'])) {
return;
}