forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.js
More file actions
124 lines (108 loc) · 3.33 KB
/
Copy pathinstall.js
File metadata and controls
124 lines (108 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
var promisify = require("promisify-node");
var path = require("path");
var fs = require("fs");
var whichNativeNodish = require("which-native-nodish");
var prepareForBuild = require("./prepareForBuild");
var exec = promisify(function(command, opts, callback) {
return require("child_process").exec(command, opts, callback);
});
var nwVersion = null;
var asVersion = null;
var local = path.join.bind(path, __dirname);
return whichNativeNodish("..")
.then(function(results) {
nwVersion = results.nwVersion;
asVersion = results.asVersion;
})
.then(function() {
if (fs.existsSync(local("../.didntcomefromthenpmregistry"))) {
return prepareAndBuild();
}
if (process.env.BUILD_DEBUG) {
console.info("[nodegit] Doing a debug build, no fetching allowed.");
return prepareAndBuild();
}
if (process.env.BUILD_ONLY) {
console.info("[nodegit] BUILD_ONLY is set to true, no fetching allowed.");
return prepareAndBuild();
}
var args = [];
if (asVersion) {
args.push("--runtime=electron");
args.push("--target=" + asVersion);
args.push("--is_clang=1");
} else if (nwVersion) {
args.push("--runtime=node-webkit");
args.push("--target=" + nwVersion);
}
return installPrebuilt(args);
});
function installPrebuilt(args) {
console.info("[nodegit] Fetching binary from S3.");
var installArguments = args.join(" ");
return exec("node-pre-gyp install " + installArguments)
.then(
function() {
console.info("[nodegit] Completed installation successfully.");
},
function(err) {
console.info("[nodegit] Failed to install prebuilt binary, " +
"building manually.");
console.error(err);
return prepareAndBuild();
}
);
}
function prepareAndBuild() {
console.info("[nodegit] Regenerating and configuring code");
return prepareForBuild()
.then(function() {
return build();
});
}
function build() {
console.info("[nodegit] Everything is ready to go, attempting compilation");
if (nwVersion) {
console.info("[nodegit] Building native node-webkit module.");
}
else {
console.info("[nodegit] Building native node module.");
}
var opts = {
cwd: ".",
maxBuffer: Number.MAX_VALUE,
env: process.env
};
var target = "";
var debug = (process.env.BUILD_DEBUG ? " --debug" : "");
var builder = "node-gyp";
var distUrl = "";
if (asVersion) {
var home = process.platform == "win32" ?
process.env.USERPROFILE : process.env.HOME;
opts.env.HOME = path.join(home, ".atom-shell-gyp");
target = "--target=" + asVersion;
distUrl = "--dist-url=https://gh-contractor-zcbenz.s3." +
"amazonaws.com/atom-shell/dist";
}
else if (nwVersion) {
builder = "nw-gyp";
target = "--target=" + nwVersion;
}
builder = path.resolve(".", "node_modules", ".bin", builder);
builder = builder.replace(/\s/g, "\\$&");
var cmd = [builder, "rebuild", target, debug, distUrl]
.join(" ").trim();
return exec(cmd, opts)
.then(function() {
console.info("[nodegit] Compilation complete.");
console.info("[nodegit] Completed installation successfully.");
process.exitCode = 0;
},
function(err, stderr) {
console.error(err);
console.error(stderr);
process.exitCode = 13;
}
);
}