Skip to content

Commit 61ccbe8

Browse files
authored
Merge pull request kubernetes-sigs#571 from CecileRobertMichon/kubectl-path
conformance: fix kubectl path
2 parents 6a820e0 + 80b6934 commit 61ccbe8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/ci-conformance.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ build_k8s() {
5757
cp -f "${PWD}/bazel-bin/test/e2e/e2e.test" "${PWD}/_output/bin/e2e.test"
5858
# workaround for mac os
5959
cp -f "${PWD}/bazel-bin/vendor/github.com/onsi/ginkgo/ginkgo/darwin_amd64_stripped/ginkgo" "${PWD}/_output/bin/ginkgo" || true
60-
export KUBECTL_PATH="$(dirname "$(find "${PWD}/bazel-bin/" -name kubectl -type f)")/kubectl"
61-
PATH="${KUBECTL_PATH}:${PATH}"
60+
PATH="$(dirname "$(find "${PWD}/bazel-bin/" -name kubectl -type f)"):${PATH}"
6261
export PATH
6362

6463
# attempt to release some memory after building

0 commit comments

Comments
 (0)