-
Notifications
You must be signed in to change notification settings - Fork 40.1k
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
Fix shellcheck lint errors in test/images/* scripts #74601
Fix shellcheck lint errors in test/images/* scripts #74601
Conversation
@@ -22,21 +22,22 @@ function start() | |||
while getopts "G:" opt; do | |||
case ${opt} in | |||
G) gid=${OPTARG};; | |||
*):;; |
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.
SC2220 - "Invalid flags are not handled. Add a *) case."
This just adds a default 'true' case that does nothing, alternative could be to just disable the check.
62170aa
to
a780af4
Compare
/retest |
a780af4
to
1ac64b9
Compare
1ac64b9
to
c3e1663
Compare
/retest |
c3e1663
to
74c556a
Compare
/retest |
74c556a
to
ce1159c
Compare
/retest |
ce1159c
to
5518def
Compare
@mrbobbytables: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
/retest |
Hello, I checked your changes. I think your changes are appropriate. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: mrbobbytables, sttts 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 |
What type of PR is this?
/kind cleanup
What this PR does / why we need it:
Ensures all scripts under test/images/* pass hack/verify-shellcheck.sh
EDIT: Most of the scripts have been updated in other PRs. This is now limited to:
Which issue(s) this PR fixes:
Working towards #72956
Special notes for your reviewer:
Does this PR introduce a user-facing change?:
/sig testing
/priority important-longterm