place pax headers on header.pax to allow custom headers

This commit is contained in:
Bradley Farias 2016-04-04 12:24:53 -05:00
parent 2332d878a6
commit fbba7df149

View file

@ -22,6 +22,7 @@ var emptyStream = function (self, offset) {
var mixinPax = function (header, pax) {
if (pax.path) header.name = pax.path
if (pax.linkpath) header.linkname = pax.linkpath
header.pax = pax
return header
}