We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Feature Request: Escape the & > passed in --build-arg and --set options, eg
&
>
--build-arg
--set
acb build --build-arg arg1=a&b => arg1=a\&b acb exec --set key1=a>b => key1=a\>b
Maybe it's just safe to escape all chars passed in --build-arg and --set, eg \a\r\g\1\=\a\&\b
\a\r\g\1\=\a\&\b
The text was updated successfully, but these errors were encountered:
I had the same issue if it contains { as it errors saying there is no closing braket
{
Sorry, something went wrong.
No branches or pull requests
Feature Request: Escape the
&
>
passed in--build-arg
and--set
options, egMaybe it's just safe to escape all chars passed in
--build-arg
and--set
, eg\a\r\g\1\=\a\&\b
The text was updated successfully, but these errors were encountered: