Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quoting breaks behavior when
BEHAT_TAGSis empty.The
behat-tags.phpscript outputs nothing when there are no tags to skip (see lines 72-74: it only echoes when$skip_tagsis non-empty). With this change:behat --format progress --strict✓""→behat --format progress "" --strict✗Passing an empty string argument to behat will likely cause it to fail or behave unexpectedly. Use parameter expansion to conditionally include the argument only when non-empty:
🐛 Proposed fix using conditional expansion
${BEHAT_TAGS:+"$BEHAT_TAGS"}expands to nothing if the variable is empty/unset, or to the properly quoted value otherwise. This satisfies ShellCheck SC2086 while preserving the original behavior.Alternatively, if you prefer to keep it unquoted (since the output contains no spaces or glob characters), disable the warning explicitly:
🤖 Prompt for AI Agents