pull-git-repo
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -668,2 +668,11 @@ var buffered = require('pull-buffered') | ||
R.getObjectFromAny = function (hash, cb) { | ||
if (hash === 'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391') { | ||
// a bug in pull-git-pack sometimes prevents detecting the empty blob | ||
return cb(null, { | ||
type: 'blob', | ||
length: 0, | ||
read: pull.empty() | ||
}) | ||
} | ||
var self = this | ||
@@ -670,0 +679,0 @@ this.getObject(hash, function (err, obj) { |
{ | ||
"name": "pull-git-repo", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "utility methods for git repos using pull streams", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
34227
955