File tree 1 file changed +10
-7
lines changed
1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -253,6 +253,11 @@ function hasTarHeader (c) {
253
253
c [ 264 ] === 0x00 ) )
254
254
}
255
255
256
+ function dispose ( stream ) {
257
+ if ( stream . destroy ) return stream . destroy ( )
258
+ if ( stream . close ) return stream . close ( )
259
+ }
260
+
256
261
function untarStream ( tarball , cb ) {
257
262
validate ( 'SF' , arguments )
258
263
cb = once ( cb )
@@ -273,7 +278,7 @@ function untarStream (tarball, cb) {
273
278
doUntar ( )
274
279
}
275
280
else {
276
- file . close ( )
281
+ dispose ( file )
277
282
var er = new Error ( 'Non-gzip/tarball ' + tarball )
278
283
er . code = 'ENOTTARBALL'
279
284
return cb ( er )
@@ -290,7 +295,7 @@ function untarStream (tarball, cb) {
290
295
er . code = 'EGUNZIP'
291
296
cb ( er )
292
297
} )
293
- tounpipe . push ( [ stream , gunzip ] )
298
+ tounpipe . push ( gunzip )
294
299
stream = gunzip
295
300
doUntar ( )
296
301
}
@@ -302,18 +307,16 @@ function untarStream (tarball, cb) {
302
307
er . code = 'EUNTAR'
303
308
cb ( er )
304
309
} )
305
- tounpipe . push ( [ stream , untar ] )
310
+ tounpipe . push ( untar )
306
311
stream = untar
307
312
addClose ( )
308
313
}
309
314
310
315
function addClose ( ) {
311
316
stream . close = function ( ) {
312
- tounpipe . forEach ( function ( streams ) {
313
- streams [ 0 ] . unpipe ( streams [ 1 ] )
314
- } )
317
+ tounpipe . forEach ( dispose )
315
318
316
- file . close ( )
319
+ dispose ( file )
317
320
}
318
321
}
319
322
}
You can’t perform that action at this time.
0 commit comments