summaryrefslogtreecommitdiffstats
path: root/checkpkgist.php
diff options
context:
space:
mode:
Diffstat (limited to 'checkpkgist.php')
-rwxr-xr-xcheckpkgist.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/checkpkgist.php b/checkpkgist.php
index fe16b40..48c3d11 100755
--- a/checkpkgist.php
+++ b/checkpkgist.php
@@ -122,9 +122,11 @@ function run($name, $rpm) {
($pkg['source']['reference']?:'unkown'));
}
$display = true;
- break;
+ if (!$verb) {
+ break;
+ }
}
- else if (version_compare($pkver, $rpmver, 'eq') && $verb) {
+ else if (version_compare($pkver, $rpmver, 'eq') && $verb && !$display) {
printf(" %-40s %15s %15s %15s\n", $rpm, $rpmver, $pkver, $date->format("Y-m-d"));
$display = true;
break;