aboutsummaryrefslogtreecommitdiff
path: root/sbosrcarch
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2018-07-17 17:02:52 -0400
committerB. Watson <yalhcru@gmail.com>2018-07-17 17:02:52 -0400
commitfaaef2cc8fb316bdcdddecdf62ccb0db8efeb226 (patch)
treea6dbba63e0a3e3d4327892ce5f54f8d36116036c /sbosrcarch
parent20ceb6d34f1aa0236cb94c054539ce8699dea49e (diff)
downloadsbostuff-faaef2cc8fb316bdcdddecdf62ccb0db8efeb226.tar.gz
sbosrcarch: retry count
Diffstat (limited to 'sbosrcarch')
-rwxr-xr-xsbosrcarch6
1 files changed, 5 insertions, 1 deletions
diff --git a/sbosrcarch b/sbosrcarch
index bc362d3..3bcdc7a 100755
--- a/sbosrcarch
+++ b/sbosrcarch
@@ -1230,7 +1230,11 @@ sub update_mode {
$retries++;
}
close $fh;
- print "Retried $retries builds from STATUS file\n";
+ if($retries) {
+ print "Retried $retries builds from STATUS file\n";
+ } else {
+ print "No missing builds in STATUS, we are at 100%\n";
+ }
}
exit 0;