From e045c7a42d074dc7c409f67f59531e7f5ccaadcd Mon Sep 17 00:00:00 2001 From: Mithgol Date: Sat, 28 Jun 2014 10:31:53 +0400 Subject: [PATCH 1/3] add "0.10.0": "0.11.13" to nw_crosswalk.json --- lib/util/nw_crosswalk.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/util/nw_crosswalk.json b/lib/util/nw_crosswalk.json index 99fb5e1e..d3fb467a 100644 --- a/lib/util/nw_crosswalk.json +++ b/lib/util/nw_crosswalk.json @@ -1,4 +1,5 @@ { + "0.10.0": "0.11.13", "0.9.2": "0.11.9", "0.9.1": "0.11.9", "0.9.0": "0.11.9", From 1dd06a99657cbd115cc474c0914bf764e65d440d Mon Sep 17 00:00:00 2001 From: Mithgol Date: Sat, 28 Jun 2014 10:35:50 +0400 Subject: [PATCH 2/3] also add "0.10.0-rc1": "0.11.13" to nw_crosswalk.json --- lib/util/nw_crosswalk.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/util/nw_crosswalk.json b/lib/util/nw_crosswalk.json index d3fb467a..4926dcdb 100644 --- a/lib/util/nw_crosswalk.json +++ b/lib/util/nw_crosswalk.json @@ -1,5 +1,6 @@ { "0.10.0": "0.11.13", + "0.10.0-rc1": "0.11.13", "0.9.2": "0.11.9", "0.9.1": "0.11.9", "0.9.0": "0.11.9", From b15c872e351e0171d20c22abeb521d7c891e7a8f Mon Sep 17 00:00:00 2001 From: Mithgol Date: Sat, 28 Jun 2014 12:11:08 +0400 Subject: [PATCH 3/3] =?UTF-8?q?do=C2=A0not=20reinvent=20the=C2=A0wheel:=20?= =?UTF-8?q?use=20`path.resolve`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/testbinary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/testbinary.js b/lib/testbinary.js index 7ec0fc21..a64a72c4 100644 --- a/lib/testbinary.js +++ b/lib/testbinary.js @@ -28,7 +28,7 @@ function testbinary(gyp, argv, callback) { } else { shell_cmd = 'nw'; } - var modulePath = path.join(process.cwd(), binary_module); + var modulePath = path.resolve(binary_module); var appDir = path.join(__dirname, 'util', 'nw-pre-gyp'); args.push(appDir); args.push(modulePath);