Skip to content

Commit

Permalink
Merge pull request #74451 from xichengliudui/fixshellcheckout190223
Browse files Browse the repository at this point in the history
fix shellcheck in hack/...
  • Loading branch information
k8s-ci-robot committed Feb 23, 2019
2 parents 1cfaf2b + 783aa61 commit 6a29f8c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
3 changes: 0 additions & 3 deletions hack/.shellcheck_failures
Expand Up @@ -113,9 +113,6 @@
./hack/verify-staging-meta-files.sh
./hack/verify-symbols.sh
./hack/verify-test-featuregates.sh
./hack/verify-test-images.sh
./hack/verify-test-owners.sh
./hack/verify-typecheck.sh
./test/cmd/apply.sh
./test/cmd/apps.sh
./test/cmd/authorization.sh
Expand Down
2 changes: 1 addition & 1 deletion hack/verify-test-images.sh
Expand Up @@ -18,7 +18,7 @@ set -o errexit
set -o nounset
set -o pipefail

KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..

cd "${KUBE_ROOT}"
result=0
Expand Down
3 changes: 2 additions & 1 deletion hack/verify-test-owners.sh
Expand Up @@ -17,7 +17,8 @@ set -o errexit
set -o nounset
set -o pipefail

export KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
export KUBE_ROOT
source "${KUBE_ROOT}/hack/lib/init.sh"


Expand Down
2 changes: 1 addition & 1 deletion hack/verify-typecheck.sh
Expand Up @@ -18,7 +18,7 @@ set -o errexit
set -o nounset
set -o pipefail

KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
source "${KUBE_ROOT}/hack/lib/init.sh"

kube::golang::verify_go_version
Expand Down

0 comments on commit 6a29f8c

Please sign in to comment.