-
Notifications
You must be signed in to change notification settings - Fork 17
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
fix: Properly propagate quotes #1626
Conversation
@aswasif007 I added some failing test cases. Revert if I am misunderstanding the issue. I do wonder if we should fix this issue centrally in Parker rather than parsing and validating in the client. |
02ca1ac
to
5941cca
Compare
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.
Excellent, thanks!
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
Description
Fix an issue with propagating quotes to wp shell. Here is the issue with current implementation:
If you execute
vip @app.env -- wp --foo='bar1 "bar2" "bar3"'
the command that gets executed in the shell is:vip @app.env -- wp --foo="bar1 "bar2" "bar3""
. This PR fixes that quoting issue.