From 5f1d5eb600f3be15eda768659070561d4cd9be97 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Sat, 20 Dec 2025 16:35:44 -0300 Subject: [PATCH] builds: Allow manual downloading of in-progress builds --- builds.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/builds.md b/builds.md index 59967f3..762635e 100644 --- a/builds.md +++ b/builds.md @@ -114,8 +114,10 @@ function listBuild(data) { if (window.inBisectMode) return bisectNextBuild(buildNumberVal); - buildBins.firstChild.innerHTML = 'This build failed to compile, please try a different one.'; - return; + if (!data['inProgress']) { + buildBins.firstChild.innerHTML = 'This build failed to compile, please try a different one.'; + return; + } } /* Display build flag buttons when in bisect mode. */