From 652d5962b96478b0390ffa18a260417f31ea1168 Mon Sep 17 00:00:00 2001 From: John Haley Date: Wed, 24 Feb 2016 10:28:43 -0700 Subject: [PATCH 1/2] Fix debug build An extra whitespace killed the debug build. Because of course it did. --- lifecycleScripts/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lifecycleScripts/install.js b/lifecycleScripts/install.js index 4b553b4d2..e27b1407f 100644 --- a/lifecycleScripts/install.js +++ b/lifecycleScripts/install.js @@ -79,7 +79,7 @@ function build() { }; var builder = "node-gyp"; - var debug = (process.env.BUILD_DEBUG ? " --debug" : ""); + var debug = (process.env.BUILD_DEBUG ? "--debug" : ""); var target = ""; var distUrl = ""; var runtime = ""; From ec6a98304edf5b9d7adc5e1956d0b34e840083f0 Mon Sep 17 00:00:00 2001 From: John Haley Date: Wed, 24 Feb 2016 10:43:22 -0700 Subject: [PATCH 2/2] Fix linter --- lifecycleScripts/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lifecycleScripts/install.js b/lifecycleScripts/install.js index e27b1407f..34989f2ac 100644 --- a/lifecycleScripts/install.js +++ b/lifecycleScripts/install.js @@ -101,7 +101,7 @@ function build() { else if (nwjsVersion) { builder = "nw-gyp"; target = "--target=" + nwjsVersion; - runtime = "--runtime=node-webkit" + runtime = "--runtime=node-webkit"; } var home = process.platform == "win32" ?