Skip to content

Commit 3db03c2

Browse files
committedMar 2, 2018
fix(tarball): stop dropping stream errors on the floor
1 parent 62e6bc9 commit 3db03c2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎tarball.js

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ function tarballStream (spec, opts) {
4545
})
4646
}
4747
})
48+
.catch(err => output.emit('error', err))
4849
return output
4950
}
5051

0 commit comments

Comments
 (0)
Please sign in to comment.