-
Notifications
You must be signed in to change notification settings - Fork 1.5k
installer/pkg/workflow/utils: Format quoted paths with %q #40
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
installer/pkg/workflow/utils: Format quoted paths with %q #40
Conversation
It's unlikely that base contains single quotes, so this is just a nit. But since %q [1] gives us more robust quoting with fewer source-code characters, it seems like a worthwhile change. [1]: https://golang.org/pkg/fmt/#hdr-Printing
|
Can one of the admins verify this patch? |
|
There may not be quotes but there could be spaces in the path in which case this makes reading the path more obvious. |
|
/ok-to-test |
|
/lgtm |
The previous code had |
|
The e2e-aws errors look like these. |
|
/retest |
|
Same failures in the most recent run. |
|
/retest |
Add Owns(Secret, Deployment and ClusterOperator) to be watched
It's unlikely that
basecontains single quotes, so this is just a nit. But since%qgives us more robust quoting with fewer source-code characters, it seems like a worthwhile change.