Skip to content
This repository was archived by the owner on Feb 8, 2019. It is now read-only.

Commit 6483aa4

Browse files
committed
feat(): multiple stages on pstage command
1 parent 0216a6d commit 6483aa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/stepper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const stepper = function() {
8080
logger.trace('#green', 'stepper', 'running', '#cyan', config.stages[n], '(', n, 'of', config.stages.length, ')');
8181
_setWorkingDir();
8282

83-
if (!step.params.pstage || config.stages[n] === step.params.pstage) {
83+
if (!step.params.pstage || step.params.pstage.indexOf(config.stages[n]) >= 0) {
8484

8585
step._doPlugins(config.stages[n])
8686
.then((result) => {

0 commit comments

Comments
 (0)