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>2022-11-11 20:12:40 +0300
committerBryan Drewery <bryan@shatow.net>2022-11-11 20:12:40 +0300
commit490d138a430f6941a0209c77d29facc795369c71 (patch)
treecfad596b633f3a08cdaeec2f9f4c7cf09f70b3e1
parent5f69efba7802c412193cecf2d00a34fd77bb56fd (diff)
html: Ignore 'tobuild' ports from 8931810af713
-rw-r--r--src/share/poudriere/html/assets/poudriere.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/share/poudriere/html/assets/poudriere.js b/src/share/poudriere/html/assets/poudriere.js
index 72d72387..207d8629 100644
--- a/src/share/poudriere/html/assets/poudriere.js
+++ b/src/share/poudriere/html/assets/poudriere.js
@@ -670,6 +670,9 @@ function process_data_build(data) {
data.ports["remaining"] = [];
}
$.each(data.ports, function(status, ports) {
+ if (status == "tobuild") {
+ return;
+ }
if (data.ports[status] &&
(data.ports[status].length > 0 || status == "remaining")) {
table_rows = [];