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 | 777a1e914a9717a3b3982120eb6318097014ac29 (patch) | |
| tree | a9a12fd827448d462c3c7ce3e2debb0695861149 | |
| parent | daa5dbd1bdc4f02f312c018a51785f250f5ef9f3 (diff) | |
checkpkgist: ignore vendor='kolab', not registered on packagist
| -rwxr-xr-x | checkpkgist.php | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/checkpkgist.php b/checkpkgist.php index 2fd55ac..f163353 100755 --- a/checkpkgist.php +++ b/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;  	}  | 
