diff options
Diffstat (limited to 'checkpkgist')
-rwxr-xr-x | checkpkgist/checkpkgist.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/checkpkgist/checkpkgist.php b/checkpkgist/checkpkgist.php index 5a37bfc..2fd55ac 100755 --- a/checkpkgist/checkpkgist.php +++ b/checkpkgist/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); } |