-
-
Notifications
You must be signed in to change notification settings - Fork 289
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
Replace *
value with other more bash friendly value
#5963
Comments
Hi, may I know specifically which file or all the files? Is this issue still needing to be resolved? |
Hey, there are multiple cases but likely just wanna change this for
It is probably also the only place where we would wanna change this, as for |
Thanks. I suppose if it's ok, I'll fork the Repo, make the changes in that file, replace the value & commit changes if no problem? |
Sure, go ahead, you can open a PR here after you are done with your changes. Happy to review :) |
Created PR #6459 thanks w/ love. |
#7011 target |
we should add this in a backward compatible way |
Can we have proper quoting instead of replacing it? ex: |
Yes, you have to quote it otherwise it won't work, that's why we wanna replace it with a more bash friendly value. |
Problem description
*
is not very friendly to use in bash, it has to be quoted or else it will not be handled as a string but an operator instead, i.e. it will list all files of the directory.There are currently a few CLI flags that accept
*
as a value--rest.namespace
--rest.cors
--keymanager.cors
See Command Line Reference for an overview of all non-hidden flags.
Solution description
Replace
*
value with other more bash friendly value, for example the wordall
.It has to be considered what value to use for cors as
*
has a special meaning in this context.Additional context
No response
The text was updated successfully, but these errors were encountered: