Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
deps: float patch on npm to fix citgm
This floats npm/npm#16791 onto npm v5.0.0
to fix an edge case that was found in citgm
  • Loading branch information
MylesBorins committed May 30, 2017
commit 363b93804d48c8851b648b8fdcc464710559eb25
4 changes: 1 addition & 3 deletions deps/npm/lib/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,7 @@ function printData (data, name, cb) {
log.disableProgress()

// print directly to stdout to not unnecessarily add blank lines
process.stdout.write(msg)

cb(null, data)
process.stdout.write(msg, () => cb(null, data))
}
function cleanup (data) {
if (Array.isArray(data)) {
Expand Down