Skip to content

Commit

Permalink
bug #33805 [FrameworkBundle] Fix wrong returned status code in Config…
Browse files Browse the repository at this point in the history
…DebugCommand (jschaedl)

This PR was merged into the 3.4 branch.

Discussion
----------

[FrameworkBundle] Fix wrong returned status code in ConfigDebugCommand

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | yes
| New feature?  | no <!-- please update src/**/CHANGELOG.md files -->
| Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tickets       | Fix #33747<!-- prefix each issue number with "Fix #", if any -->
| License       | MIT
| Doc PR        | -

This is a follow-up PR caused by #33775 (comment)

Commits
-------

9b5ced2 [FrameworkBundle] Fix wrong returned status code in ConfigDebugCommand
  • Loading branch information
xabbuh committed Oct 2, 2019
2 parents db9ef8a + 9b5ced2 commit fb5f8fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
} catch (LogicException $e) {
$errorIo->error($e->getMessage());

return;
return 1;
}

$io->title(sprintf('Current configuration for "%s.%s"', $extensionAlias, $path));
Expand Down

0 comments on commit fb5f8fb

Please sign in to comment.