summaryrefslogtreecommitdiffstats
path: root/cjdns/patches/001-five-mins-builder-zonk.patch
blob: c53c62f4d7abceb20f9ce7c311774c6cc0170af1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- a/node_build/builder.js
+++ b/node_build/builder.js
@@ -277,8 +277,8 @@ const execJs = function (js, ctx, file,
     js = '"use strict";' + qs.join("'");
 
     const to = setTimeout(function () {
-        throw new Error("Inline JS did not return after 120 seconds [" + js + "]");
-    }, 120000);
+        throw new Error("Inline JS did not return after 5 minutes [" + js + "]");
+    }, 300000);
 
     nThen(function (waitFor) {