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>2019-08-01 07:55:38 +0300
committerBryan Drewery <bryan@shatow.net>2019-08-02 20:16:11 +0300
commit383f6f2ab47df89cb746e132c4ba891af1d435cb (patch)
tree660811ec1b4ee60db3e453ac727144ca2c00b685 /src/share/poudriere/html
parent1fd1aa73ef592d384cae1a5fd006f915507daabc (diff)
Tobuild should account for ignored/skipped being trimmed out of queued
Diffstat (limited to 'src/share/poudriere/html')
-rw-r--r--src/share/poudriere/html/assets/poudriere.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/poudriere/html/assets/poudriere.js b/src/share/poudriere/html/assets/poudriere.js
index cc63640f..c6723c51 100644
--- a/src/share/poudriere/html/assets/poudriere.js
+++ b/src/share/poudriere/html/assets/poudriere.js
@@ -177,7 +177,7 @@ function update_canvas(stats) {
failed = stats.failed;
skipped = stats.skipped;
ignored = stats.ignored;
- remaining = queued - built - failed - skipped - ignored;
+ remaining = queued - built - failed;
context = canvas.getContext('2d');