From ca4df59a410f7bc1948446546415074d8d0e533b Mon Sep 17 00:00:00 2001 From: Rebecca Turner Date: Mon, 18 Dec 2017 14:21:59 -0800 Subject: [PATCH] actions: Correct logging about # of actions being run --- lib/install/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/install/actions.js b/lib/install/actions.js index 9608a943a5aee..a34d03ffe2146 100644 --- a/lib/install/actions.js +++ b/lib/install/actions.js @@ -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], () => {