diff options
author | B. Watson <yalhcru@gmail.com> | 2018-07-17 17:02:52 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2018-07-17 17:02:52 -0400 |
commit | faaef2cc8fb316bdcdddecdf62ccb0db8efeb226 (patch) | |
tree | a6dbba63e0a3e3d4327892ce5f54f8d36116036c /sbosrcarch | |
parent | 20ceb6d34f1aa0236cb94c054539ce8699dea49e (diff) | |
download | sbostuff-faaef2cc8fb316bdcdddecdf62ccb0db8efeb226.tar.gz |
sbosrcarch: retry count
Diffstat (limited to 'sbosrcarch')
-rwxr-xr-x | sbosrcarch | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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; |