forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigureLibssh2.js
More file actions
37 lines (34 loc) · 867 Bytes
/
configureLibssh2.js
File metadata and controls
37 lines (34 loc) · 867 Bytes
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
var cp = require("child_process");
var path = require("path");
var rooted = path.join.bind(path, __dirname, "..");
module.exports = function retrieveExternalDependencies() {
if (process.platform === "win32") {
return Promise.resolve("");
}
return new Promise(function(resolve, reject) {
console.info("[nodegit] Configuring libssh2.");
cp.execFile(
rooted("vendor/libssh2/") + "configure",
{cwd: rooted("vendor/libssh2/")},
function(err, stdout, stderr) {
if (err) {
console.error(err);
console.error(stderr);
reject(err, stderr);
}
else {
resolve(stdout);
}
}
);
});
};
// Called on the command line
if (require.main === module) {
if (process.platform === "win32") {
console.log("nothing to do");
}
else {
module.exports();
}
}