From ecc61d59c1e816b500263d195320b22d0b1778de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20Hu=C3=9F?= Date: Mon, 10 Jun 2019 20:30:42 +0200 Subject: [PATCH] fix(e2e): Use build.sh for compiling (#175) * fix(e2e): Use build.sh for compiling Fixes #174. * Update test/e2e-tests.sh Co-Authored-By: Adriano Cunha <35786489+adrcunha@users.noreply.github.com> --- test/e2e-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e-tests.sh b/test/e2e-tests.sh index 21cb84d48..659be3f44 100755 --- a/test/e2e-tests.sh +++ b/test/e2e-tests.sh @@ -31,7 +31,7 @@ source $(dirname $0)/../vendor/github.com/knative/test-infra/scripts/e2e-tests.s # Build kn before integration tests, so we fail fast in case of error. function cluster_setup() { header "Building client" - go build -v -mod=vendor ./cmd/... || return 1 + ${REPO_ROOT_DIR}/hack/build.sh -u || return 1 } function knative_setup() {