Skip to content

Commit 5f1d5eb

Browse files
committed
builds: Allow manual downloading of in-progress builds
1 parent 73a3ab1 commit 5f1d5eb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

builds.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,10 @@ function listBuild(data) {
114114
if (window.inBisectMode)
115115
return bisectNextBuild(buildNumberVal);
116116

117-
buildBins.firstChild.innerHTML = 'This build failed to compile, please try a different one.';
118-
return;
117+
if (!data['inProgress']) {
118+
buildBins.firstChild.innerHTML = 'This build failed to compile, please try a different one.';
119+
return;
120+
}
119121
}
120122

121123
/* Display build flag buttons when in bisect mode. */

0 commit comments

Comments
 (0)