Skip to content

Commit bc46ca9

Browse files
committedJun 26, 2015
install: Make shrinkwrap extraction work in 0.8
1 parent 8fb8b4a commit bc46ca9

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed
 

‎lib/fetch-package-metadata.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,11 @@ function hasTarHeader (c) {
253253
c[264] === 0x00))
254254
}
255255

256+
function dispose (stream) {
257+
if (stream.destroy) return stream.destroy()
258+
if (stream.close) return stream.close()
259+
}
260+
256261
function untarStream (tarball, cb) {
257262
validate('SF', arguments)
258263
cb = once(cb)
@@ -273,7 +278,7 @@ function untarStream (tarball, cb) {
273278
doUntar()
274279
}
275280
else {
276-
file.close()
281+
dispose(file)
277282
var er = new Error('Non-gzip/tarball ' + tarball)
278283
er.code = 'ENOTTARBALL'
279284
return cb(er)
@@ -290,7 +295,7 @@ function untarStream (tarball, cb) {
290295
er.code = 'EGUNZIP'
291296
cb(er)
292297
})
293-
tounpipe.push([stream, gunzip])
298+
tounpipe.push(gunzip)
294299
stream = gunzip
295300
doUntar()
296301
}
@@ -302,18 +307,16 @@ function untarStream (tarball, cb) {
302307
er.code = 'EUNTAR'
303308
cb(er)
304309
})
305-
tounpipe.push([stream, untar])
310+
tounpipe.push(untar)
306311
stream = untar
307312
addClose()
308313
}
309314

310315
function addClose() {
311316
stream.close = function () {
312-
tounpipe.forEach(function (streams) {
313-
streams[0].unpipe(streams[1])
314-
})
317+
tounpipe.forEach(dispose)
315318

316-
file.close()
319+
dispose(file)
317320
}
318321
}
319322
}

0 commit comments

Comments
 (0)
Please sign in to comment.