From d7d2c091a6b87503b7e1d836ed5b848df92ae2f7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 15 Jan 2015 07:16:34 +0100 Subject: checkpkgist: ignore horde for now --- checkpkgist.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/checkpkgist.php b/checkpkgist.php index 5a37bfc..2fd55ac 100755 --- a/checkpkgist.php +++ b/checkpkgist.php @@ -68,6 +68,11 @@ class PkgClient { function run($name, $rpm) { global $quiet, $verb, $client; + list($owner, $library) = explode('/', $name, 2); + if ($owner == 'horde') { + return; + } + if (!$quiet) { printf(" %-40s\r", $rpm); } -- cgit