mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-15 10:16:12 +01:00
async.apply
This commit is contained in:
@@ -100,9 +100,7 @@ function beforeBuild(targets, callback) {
|
||||
async.series([
|
||||
db.init,
|
||||
meta.themes.setupPaths,
|
||||
function (next) {
|
||||
plugins.prepareForBuild(targets, next);
|
||||
},
|
||||
async.apply(plugins.prepareForBuild, targets),
|
||||
], function (err) {
|
||||
if (err) {
|
||||
winston.error('[build] Encountered error preparing for build: ' + err.message);
|
||||
@@ -182,7 +180,9 @@ function build(targets, callback) {
|
||||
var startTime;
|
||||
var totalTime;
|
||||
async.series([
|
||||
async.apply(beforeBuild, targets),
|
||||
function (next) {
|
||||
beforeBuild(targets, next);
|
||||
},
|
||||
function (next) {
|
||||
var threads = parseInt(nconf.get('threads'), 10);
|
||||
if (threads) {
|
||||
|
||||
Reference in New Issue
Block a user