diff options
author | B. Watson <yalhcru@gmail.com> | 2018-05-22 01:30:47 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2018-05-22 01:30:47 -0400 |
commit | 3fe17ce4a0b9a2c958f471c3a3ab0c5595d088b1 (patch) | |
tree | ea8bd61300e40c325e03d11cf11febd4cf30190b /sbosrcarch | |
parent | 8d0ef7a8eda527a881aa00599d8e2707a1002906 (diff) | |
download | sbostuff-3fe17ce4a0b9a2c958f471c3a3ab0c5595d088b1.tar.gz |
Fix file coverage stats for check/status commands (part deux)
Diffstat (limited to 'sbosrcarch')
-rwxr-xr-x | sbosrcarch | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1503,6 +1503,7 @@ sub check_byname_wanted { if(!defined($filename) || defined($extra)) { print "misplaced file (not in a category/prgnam dir): $_\n"; + $filecount--; return; } @@ -1511,6 +1512,7 @@ sub check_byname_wanted { my $info = join("/", $sbogitdir, $category, $prgnam, $prgnam . ".info"); if(!-f $info) { print "$shortname extraneous: no info file for $prgnam/$category\n"; + $filecount--; return; } |