Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lifecycleScripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "";
Expand All @@ -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" ?
Expand Down