From ba4d7ddca84c8dd917bdde9c5db90cb2b3a3a434 Mon Sep 17 00:00:00 2001 From: Richard Marshall Date: Wed, 17 Jul 2019 20:28:47 -0700 Subject: [PATCH] test: Fix kustomize install in integration test --- examples/integration_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/integration_tests.sh b/examples/integration_tests.sh index 7d5cd9c3d..a46fbabfe 100755 --- a/examples/integration_tests.sh +++ b/examples/integration_tests.sh @@ -28,7 +28,7 @@ # before running it. # # At time of writing, its 'call point' was in -# https://github.com/kubernetes/test-infra/blob/master/jobs/config.json +# https://github.com/kubernetes/test-infra/blob/master/config/jobs/kubernetes-sigs/kustomize/kustomize-config.yaml function exitWith { local msg=$1 @@ -53,7 +53,7 @@ function setUpEnv { exitWith "Script must be run from $expectedRepo" fi - GO111MODULE=on go install . || \ + GO111MODULE=on go install ./cmd/kustomize || \ { exitWith "Failed to install kustomize."; } PATH=$GOPATH/bin:$PATH