Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show Workflow complete message after all steps are complete #22

Merged
merged 2 commits into from
Jun 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Show complete message after all steps are complete
  • Loading branch information
defunctl committed May 30, 2024
commit e776c09a4a13bf69bff96982fbc2f3aa87d89e2e
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;
}
}
Loading