We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 100b1d1 commit 8753950Copy full SHA for 8753950
1 file changed
bin/clever-setup
@@ -79,9 +79,9 @@ async.waterfall(
79
},
80
81
function each( projects, finalCallback ) {
82
- async.each(
+ async.eachSeries(
83
projects,
84
- function setupSeed( seed, callback ) {
+ function setupSeed( seed, cb ) {
85
var _path = seed.moduleDir;
86
87
async.waterfall(
@@ -214,7 +214,7 @@ async.waterfall(
214
}
215
216
],
217
- finalCallback
+ cb
218
);
219
220
finalCallback
0 commit comments