1
0
mirror of https://git.openwrt.org/feed/routing.git synced 2024-06-20 23:58:28 +02:00
openwrt-routing/cjdns/patches/001-five-mins-builder-zonk.patch
William Fleurant 217330bb5e
cjdns: bump v21.1 and patch find-python (#883)
* cjdns: bump source from v21 to v21.1
* cjdns: bump release with patch to prefer python2
* cjdns: refresh patches and remove patch musl

Signed-off-by: William Fleurant <meshnet@protonmail.com>
2022-06-18 19:01:00 +02:00

14 lines
439 B
Diff

--- 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) {