Skip to content

Commit 1e3953f

Browse files
authored
Show Workflow complete message after all steps are complete (#22)
Currently, this shows `Workflow complete.` after each _workflow step_ instead of after all the steps have completed.
2 parents 1a4bc70 + 12e3ddf commit 1e3953f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/Workflow.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ protected function execute( InputInterface $input, OutputInterface $output ) {
8888
if ( $root ) {
8989
chdir( $config->getWorkingDir() );
9090
}
91-
92-
$io->writeln( '<success>Workflow complete.</success>' );
9391
}
9492

93+
$io->writeln( '<success>Workflow complete.</success>' );
94+
9595
return 0;
9696
}
9797
}

0 commit comments

Comments
 (0)