From 915e2013dbc51a9344f3ebb8cd96f164ad73302b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 26 Feb 2015 07:38:32 +0100 Subject: checkpkgist: ignore vendor='kolab', not registered on packagist --- checkpkgist/checkpkgist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'checkpkgist') 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; } -- cgit