Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Drewery <bryan@shatow.net>2014-04-23 03:22:14 +0400
committerBryan Drewery <bryan@shatow.net>2014-04-23 03:22:14 +0400
commit43cf5a40b4c2e539323b88df1902fb741282d112 (patch)
treeb782a4f38795a0955911070808eefe4900eb2693
parent1965f9e6cc02effd5455aa25e302332c6b5c0f77 (diff)
SIGINFO: Remove redundant done/queued and just show Queued
-rwxr-xr-xsrc/share/poudriere/common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/share/poudriere/common.sh b/src/share/poudriere/common.sh
index 15ccc913..ddeadd27 100755
--- a/src/share/poudriere/common.sh
+++ b/src/share/poudriere/common.sh
@@ -454,8 +454,8 @@ siginfo_handler() {
queue_width=3
fi
- printf "[${MASTERNAME}] [${status}] [%0${queue_width}d/%0${queue_width}d] Built: %-${queue_width}d Failed: %-${queue_width}d Skipped: %-${queue_width}d Ignored: %-${queue_width}d Tobuild: %-${queue_width}d \n" \
- ${ndone} ${nbq} ${nbb} ${nbf} ${nbs} ${nbi} ${nbtobuild}
+ printf "[${MASTERNAME}] [${status}] Queued: %-${queue_width}d Built: %-${queue_width}d Failed: %-${queue_width}d Skipped: %-${queue_width}d Ignored: %-${queue_width}d Tobuild: %-${queue_width}d \n" \
+ ${nbq} ${nbb} ${nbf} ${nbs} ${nbi} ${nbtobuild}
# Skip if stopping or starting jobs
if [ -n "${JOBS}" -a "${status#starting_jobs:}" = "${status}" -a "${status}" != "stopping_jobs:" ]; then