diff --git a/appveyor.yml b/appveyor.yml index 3934f045e..c415a7596 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -60,4 +60,4 @@ build: off branches: only: - master - - v0.3 + - maint/0.14 diff --git a/lifecycleScripts/postinstall.js b/lifecycleScripts/postinstall.js index 5e543da53..a2af2089c 100755 --- a/lifecycleScripts/postinstall.js +++ b/lifecycleScripts/postinstall.js @@ -25,7 +25,7 @@ module.exports = function install() { return Promise.resolve(); } - return exec("node dist/nodegit.js") + return exec("node " + path.join(rootPath, "dist/nodegit.js")) .catch(function(e) { if (~e.toString().indexOf("Module version mismatch")) { console.warn( @@ -63,7 +63,7 @@ module.exports = function install() { if (require.main === module) { module.exports() .catch(function(e) { - console.error("[nodegit] ERROR - Could not finish postinstall"); + console.warn("[nodegit] WARN - Could not finish postinstall"); if ( process.pladtform === "linux" && @@ -74,7 +74,5 @@ if (require.main === module) { else { console.log(e); } - - process.exit(1); }); } diff --git a/package.json b/package.json index 9b236e6bb..c0cdead72 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "nodegit", "description": "Node.js libgit2 asynchronous native bindings", - "version": "0.14.0", + "version": "0.14.1", "homepage": "http://nodegit.org", "keywords": [ "libgit2",