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:
Diffstat (limited to 'src/share/poudriere/common.sh')
-rwxr-xr-xsrc/share/poudriere/common.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/share/poudriere/common.sh b/src/share/poudriere/common.sh
index b6ba5f53..882902fc 100755
--- a/src/share/poudriere/common.sh
+++ b/src/share/poudriere/common.sh
@@ -3368,9 +3368,11 @@ build_queue() {
if [ "${HTML_TRACK_REMAINING}" = "yes" ]; then
{
# Find items in pool ready-to-build
- find . -type d -depth 2
+ find . -type d -depth 2 | \
+ sed -e 's,$, ready-to-build,'
# Find items in queue not ready-to-build.
- find ../deps -type d -depth 1
+ find ../deps -type d -depth 1 | \
+ sed -e 's,$, waiting-on-dependency,'
} | sed -e 's,.*/,,' > \
"${log}/.poudriere.ports.remaining.tmp"
mv -f "${log}/.poudriere.ports.remaining.tmp" \