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/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');