Skip to content
This repository has been archived by the owner on Jul 3, 2019. It is now read-only.

Commit

Permalink
fix(git): emit manifests from git tarball handler
Browse files Browse the repository at this point in the history
  • Loading branch information
zkat committed Apr 12, 2017
1 parent 657b7fa commit b139d4b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/handlers/git/tarball.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ function tarball (spec, opts) {
opts = optCheck(opts)
const stream = new PassThrough()
gitManifest(spec, opts).then(manifest => {
stream.emit('manifest', manifest)
return pipe(fromManifest(manifest, spec, opts), stream)
}, err => stream.emit('error', err))
return stream
Expand Down

0 comments on commit b139d4b

Please sign in to comment.