builds: Allow manual downloading of in-progress builds

This commit is contained in:
RichardG867
2025-12-20 16:35:44 -03:00
parent 73a3ab14d2
commit 5f1d5eb600

View File

@@ -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. */