-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Minor fix splitting env vars in podman-commit #3138
Conversation
Can one of the admins verify this patch?
|
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: mheon, weirdwiz The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/ok-to-test |
Code LGTM |
@weirdwiz Could you add a quick test to verify that the reported issue is fixed by this and will not happen again. |
Wrong issue. |
Dang @weirdwiz , your fingers are faster than mine. I'd not realized you'd been assigned this one and was just about to spin up a PR. I've tested and this fixes the issue. A new test wouldn't hurt any. |
@rhatdan I have added the test I cannot figure out why you are getting permission denied on your system, I have only changed a line regarding splitting the string in the commit command, I don't see how this could affect the run command. |
LGTM assuming happy tests. |
`string.Split()` splits into slice of size greater than 2 which may result in loss of environment variables fixes containers#3132 Signed-off-by: Divyansh Kamboj <kambojdivyansh2000@gmail.com>
All tests passing now :D |
/lgtm |
string.Split()
splits into slice of size greater than 2which may result in loss of environment variables
fixes #3132