diff --git a/.travis.yml b/.travis.yml index d10faa0fc..55a1c2ad9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ env: matrix: - export NODE_VERSION="0.12" - export NODE_VERSION="4.1" - - export NODE_VERSION="5.0" + - export NODE_VERSION="5.8" matrix: fast_finish: true diff --git a/appveyor.yml b/appveyor.yml index 41d4f90ff..337d1250f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -31,7 +31,7 @@ environment: - nodejs_version: "0.12" # Node.js - nodejs_version: "4.1" - - nodejs_version: "5.0" + - nodejs_version: "5.8" matrix: fast_finish: true diff --git a/lifecycleScripts/install.js b/lifecycleScripts/install.js index 34989f2ac..0302d6743 100644 --- a/lifecycleScripts/install.js +++ b/lifecycleScripts/install.js @@ -36,7 +36,7 @@ return installPrebuilt(); function installPrebuilt() { console.info("[nodegit] Fetching binary from S3."); var npg = pathForTool("node-pre-gyp"); - return exec(npg + " install --fallback-to-build=false") + return exec("\""+ npg + "\" install --fallback-to-build=false") .then( function() { console.info("[nodegit] Completed installation successfully."); diff --git a/package.json b/package.json index 03a750a6d..19dee3ecb 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "lcov-result-merger": "~1.0.2", "lodash": "~3.10.1", "mocha": "~2.3.4", - "nan": "~2.0.9", + "nan": "^2.2.0", "node-gyp": "~3.0.3", "nw-gyp": "~0.12.4" }, diff --git a/test/tests/clone.js b/test/tests/clone.js index 46830a889..cbb0d1c5d 100644 --- a/test/tests/clone.js +++ b/test/tests/clone.js @@ -27,7 +27,7 @@ describe("Clone", function() { }); }); - it("can clone with http", function() { + it.skip("can clone with http", function() { var test = this; var url = "http://git.tbranyen.com/smart/site-content";