From f73bf8371d01a99687b5a3c9fb44429ccaf59d14 Mon Sep 17 00:00:00 2001 From: max korp Date: Tue, 12 May 2015 11:48:23 -0700 Subject: [PATCH 1/2] rollback libssh2 just like the branch name says --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 77d61abdc..c97ff3221 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,8 @@ "version": "0.22.2" }, "libssh2": { - "url": "http://www.libssh2.org/download/libssh2-1.5.0.tar.gz", - "version": "1.5.0" + "url": "http://www.libssh2.org/download/libssh2-1.4.3.tar.gz", + "version": "1.4.3" }, "http_parser": { "url": "https://github.com/joyent/http-parser/archive/v2.4.2.tar.gz", From 6967d379524ddffedcdd3051ea28f7e8253ecef8 Mon Sep 17 00:00:00 2001 From: John Haley Date: Tue, 19 May 2015 16:00:31 -0700 Subject: [PATCH 2/2] Fix path issue on windows in tests --- test/tests/tree_entry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tests/tree_entry.js b/test/tests/tree_entry.js index d8769cbd9..bfc32417d 100644 --- a/test/tests/tree_entry.js +++ b/test/tests/tree_entry.js @@ -48,7 +48,7 @@ describe("TreeEntry", function() { it("provides the full path", function() { return this.commit.getEntry("test/raw-commit.js") .then(function(entry) { - assert.equal(entry.path(), "test/raw-commit.js"); + assert.equal(entry.path(), path.normalize("test/raw-commit.js")); }); });