From 974e4b31a9c750c1e5bd0051cf066d68250b1d08 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 30 Jul 2016 06:58:09 +0200 Subject: checkpkgist: refresh and minor fix for 'ext-foo' case --- checkpkgist.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'checkpkgist.php') diff --git a/checkpkgist.php b/checkpkgist.php index f350fcf..482cc4d 100755 --- a/checkpkgist.php +++ b/checkpkgist.php @@ -71,6 +71,10 @@ function run($name, $rpm) { if (in_array($name, ['znerol/php-stringprep', 'psr/http-message-implementation'])) { return; } + if (!strpos($name, '/')) { + // e.g. ext-foo + return; + } list($owner, $library) = explode('/', $name, 2); if (in_array($owner, ['horde', 'kolab'])) { return; -- cgit