diff options
author | Remi Collet <fedora@famillecollet.com> | 2015-02-26 07:38:32 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2015-02-26 07:38:32 +0100 |
commit | 915e2013dbc51a9344f3ebb8cd96f164ad73302b (patch) | |
tree | 00c2d2ccfca37241ded190ab460325eb139f813f | |
parent | 58a0354def1d90c08e181d1064ac0c76fb8a6d59 (diff) |
checkpkgist: ignore vendor='kolab', not registered on packagist
-rwxr-xr-x | checkpkgist/checkpkgist.php | 2 |
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; } |