Skip to content

Commit

Permalink
actions: Correct logging about # of actions being run
Browse files Browse the repository at this point in the history
  • Loading branch information
iarna committed Dec 18, 2017
1 parent be096b4 commit ca4df59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/install/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ function doParallel (type, staging, actionsToRun, log, next) {
}
return acc
}, [])
log.silly('doParallel', type + ' ' + actionsToRun.length)
log.silly('doParallel', type + ' ' + acts.length)
time(log)
if (!acts.length) { return next() }
return withInit(actions[type], () => {
Expand Down

0 comments on commit ca4df59

Please sign in to comment.