We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c867146 + 5b58859 commit 6c8ceefCopy full SHA for 6c8ceef
lib/tools/broccoli/builder.ts
@@ -80,8 +80,10 @@ export class Builder implements IBroccoliBuilder {
80
if (!future.isResolved()) {
81
let intervalId = setInterval(() => {
82
fiberBootstrap.run(() => {
83
- if (!this.$lockfile.check().wait()) {
84
- future.return();
+ if (!this.$lockfile.check().wait() || future.isResolved()) {
+ if(!future.isResolved()) {
85
+ future.return();
86
+ }
87
clearInterval(intervalId);
88
}
89
});
0 commit comments