Merge pull request #73257 from ds-ms/shellCheckFailures

Shellcheck failures print-workspace-status.sh, run-in-gopath.sh
pull/564/head
Kubernetes Prow Robot 2019-02-06 13:23:39 -08:00 committed by GitHub
commit fb4bbc72f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 4 deletions

View File

@ -89,8 +89,6 @@
./hack/make-rules/update.sh
./hack/make-rules/verify.sh
./hack/make-rules/vet.sh
./hack/print-workspace-status.sh
./hack/run-in-gopath.sh
./hack/test-go.sh
./hack/test-integration.sh
./hack/test-update-storage-objects.sh

View File

@ -20,7 +20,7 @@ set -o errexit
set -o nounset
set -o pipefail
export KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
source "${KUBE_ROOT}/hack/lib/version.sh"
kube::version::get_version_vars

View File

@ -23,7 +23,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"
# This sets up a clean GOPATH and makes sure we are currently in it.