Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lifecycleScripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion test/tests/clone.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down