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.
1 parent 9fc9bab commit 60d83ecCopy full SHA for 60d83ec
bundle-html-scripts.js
@@ -15,7 +15,7 @@ function ExtractBundle(file, skip, verbose) {
15
var found = 0;
16
17
// If their is no new data found in 15 seconds, atleast one server hung
18
- // so check if lastfound(15 seconds ago) === found(nowish) and exit if true.
+ // so check if lastfound(15 seconds ago) === found(nowish) exit.
19
(function forever(lastfound) {
20
setTimeout(()=>{ if(found === lastfound) !console.log("Atleast 1 server hung.") && process.exit(1); else forever(found) }, 15000)
21
})();
0 commit comments