fix serial flag, close #541

This commit is contained in:
Gleb Bahmutov
2017-10-03 11:13:40 -04:00
parent c244b4dca7
commit 496e697bd8
+1 -1
View File
@@ -162,7 +162,7 @@ module.exports = (cmd, options) => {
if (runSerially) {
console.log('⚠️ running jobs serially')
}
const parallel = runSerially
const parallel = !runSerially
return runAll(tasks, {
parallel,
printLabel: tasks.length > 1,