Merge pull request #78666 from aojea/shellcheck

Fix verify-shellcheck comments
This commit is contained in:
Kubernetes Prow Robot 2019-06-14 13:26:35 -07:00 committed by GitHub
commit f75bfe9f58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -163,7 +163,7 @@ for f in "${all_shell_scripts[@]}"; do
fi
done
# Check to be sure all the packages that should pass lint are.
# Check to be sure all the files that should pass lint are.
if [ ${#errors[@]} -eq 0 ]; then
echo 'Congratulations! All shell files are passing lint (excluding those in hack/.shellcheck_failures).'
else
@ -183,7 +183,7 @@ fi
if [[ ${#not_failing[@]} -gt 0 ]]; then
{
echo "Some packages in hack/.shellcheck_failures are passing shellcheck. Please remove them."
echo "Some files in hack/.shellcheck_failures are passing shellcheck. Please remove them."
echo
for f in "${not_failing[@]}"; do
echo " $f"
@ -193,7 +193,7 @@ if [[ ${#not_failing[@]} -gt 0 ]]; then
exit 1
fi
# Check that all failing_packages actually still exist
# Check that all failing_files actually still exist
gone=()
for f in "${failing_files[@]}"; do
kube::util::array_contains "$f" "${all_shell_scripts[@]}" || gone+=( "$f" )