forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreinstall.js
More file actions
43 lines (38 loc) · 1.17 KB
/
preinstall.js
File metadata and controls
43 lines (38 loc) · 1.17 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
var path = require("path");
var local = path.join.bind(path, __dirname);
var exec = require(local("../utils/execPromise"));
var configure = require(local("configureLibssh2"));
var buildFlags = require(local("../utils/buildFlags"));
module.exports = function prepareForBuild() {
console.log("[nodegit] Running pre-install script");
return exec("npm -v")
.then(function(npmVersion) {
if (npmVersion.split(".")[0] < 3) {
console.log("[nodegit] npm@2 installed, pre-loading required packages");
return exec("npm install --ignore-scripts");
}
return Promise.resolve();
})
.then(function() {
return configure();
})
.then(function() {
if (buildFlags.isGitRepo) {
var submodules = require(local("submodules"));
var generate = require(local("../generate"));
return submodules()
.then(function() {
return generate();
});
}
});
};
// Called on the command line
if (require.main === module) {
module.exports()
.catch(function(e) {
console.error("[nodegit] ERROR - Could not finish preinstall");
console.error(e);
process.exit(1);
});
}