From d2e0a88ce2f7d3daf55d551d6cf6e0a7157c0007 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Mon, 6 Dec 2021 11:36:19 +0100 Subject: [PATCH] use go install also for kind --- e2e/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/Makefile b/e2e/Makefile index a4d025822..b2da9c86e 100644 --- a/e2e/Makefile +++ b/e2e/Makefile @@ -45,9 +45,9 @@ push: docker tools: # install pinned version of 'kind' - # go get must run outside of a dir with a (module-based) Go project ! - # otherwise go get updates project's dependencies and/or behaves differently - cd "/tmp" && GO111MODULE=on go get -d sigs.k8s.io/kind@v0.11.1 + # go install must run outside of a dir with a (module-based) Go project ! + # otherwise go install updates project's dependencies and/or behaves differently + cd "/tmp" && GO111MODULE=on go install sigs.k8s.io/kind@v0.11.1 e2etest: tools copy clean ./run.sh main