-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Replace hyphens with underscores in environment variable names #35923
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
Conversation
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.
Thanks! Please fix the missing bracket (see below). You also have a typo in your commit log (corrects
-> correct
).
Thank you! Can you please squash the two commits together and force-push? |
Commit 930ebd4 does not match "(?m)^Signed-off-by:". Please follow instructions provided in https://docs.cilium.io/en/stable/contributing/development/contributing_guide/#developer-s-certificate-of-origin |
Thank you ! Commits have been squashed and force-pushed as requested. |
Thanks, change looks good. Can I just ask again to change your commit title? You're not removing underscore (you're adding them! 🙂) but dashes. Can you also please make the commit title fit under 80 characters? The checkpatch CI job will complain otherwise. You can add more context in the commit description (separated from the title by a blank line) if necessary. |
Signed-off-by: Yann ILAS <yann.ilas@gmail.com>
Oops, sorry... Where was my head ? I just made the change... |
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.
Thanks a lot!
/test |
In bash, hyphens are not permitted in variable names, as they can cause syntax errors. To avoid this issue, variable names have been updated to use underscores (_) instead of hyphens. This change ensures compatibility with bash syntax and avoids potential errors during script execution.
Please ensure your pull request adheres to the following guidelines:
description and a
Fixes: #XXX
line if the commit addresses a particularGitHub issue.
Fixes: <commit-id>
tag, thenplease add the commit author[s] as reviewer[s] to this issue.
Fixes: #35922