Skip to content

Commit

Permalink
Show Workflow complete message after all steps are complete (#22)
Browse files Browse the repository at this point in the history
Currently, this shows `Workflow complete.` after each _workflow step_
instead of after all the steps have completed.
  • Loading branch information
defunctl committed Jun 6, 2024
2 parents 1a4bc70 + 12e3ddf commit 1e3953f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Commands/Workflow.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ protected function execute( InputInterface $input, OutputInterface $output ) {
if ( $root ) {
chdir( $config->getWorkingDir() );
}

$io->writeln( '<success>Workflow complete.</success>' );
}

$io->writeln( '<success>Workflow complete.</success>' );

return 0;
}
}

0 comments on commit 1e3953f

Please sign in to comment.