mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-01 18:58:18 +00:00
Changelog: https://github.com/koalaman/shellcheck/blob/master/CHANGELOG.md We have some new erros due to the version bump. - SC2034: VARIABLE_XYZ appears unused. Verify use (or export if used externally). - Applies to all scripts we source in other scripts - SC2039: In POSIX sh, set option pipefail is undefined. - Applies to files using it with "sh" instead of "bash" in the shebang - SC2054: Use spaces, not commas, to separate array elements. - Fixing Should make no difference in the code - SC2128: Expanding an array without an index only gives the first element. - Fixing Should make no difference in the code - SC2251: This ! is not on a condition and skips errexit. Use `&& exit 1` instead, or make sure $? is checked. - Not 100% sure if we can swap to `&& exit 1`. Applies to a lot of test code. All changes should be straight forward to fix, but will be done in a separate PR.
26 lines
706 B
Plaintext
26 lines
706 B
Plaintext
./build/common.sh
|
|
./build/lib/release.sh
|
|
./cluster/common.sh
|
|
./cluster/gce/config-default.sh
|
|
./cluster/gce/config-test.sh
|
|
./cluster/gce/gci/configure-helper.sh
|
|
./cluster/gce/gci/configure.sh
|
|
./cluster/gce/gci/health-monitor.sh
|
|
./cluster/gce/gci/master-helper.sh
|
|
./cluster/gce/gci/mounter/stage-upload.sh
|
|
./cluster/gce/upgrade.sh
|
|
./cluster/gce/util.sh
|
|
./cluster/log-dump/log-dump.sh
|
|
./cluster/pre-existing/util.sh
|
|
./hack/lib/golang.sh
|
|
./hack/lib/test.sh
|
|
./test/cmd/apply.sh
|
|
./test/cmd/apps.sh
|
|
./test/cmd/core.sh
|
|
./test/cmd/crd.sh
|
|
./test/cmd/create.sh
|
|
./test/cmd/generic-resources.sh
|
|
./test/cmd/save-config.sh
|
|
./test/images/pets/redis-installer/on-start.sh
|
|
./test/images/pets/zookeeper-installer/on-start.sh
|