From bc3ea1b18918f8eca090b09aca0a4d7ca2fe53a7 Mon Sep 17 00:00:00 2001 From: Stephen Kitt Date: Mon, 16 Jan 2023 17:32:23 +0100 Subject: [PATCH] Stop vendoring go mod vendor is no longer necessary; see https://go.dev/ref/mod#vendoring for details. Dependencies will be fulfilled using the module cache. Signed-off-by: Stephen Kitt --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b12cae2e..eaaa38c3 100644 --- a/Makefile +++ b/Makefile @@ -17,9 +17,9 @@ override UNIT_TEST_ARGS += test/e2e deploy: clusters ./scripts/$@ -e2e: vendor/modules.txt deploy +e2e: deploy ./scripts/$@ $(E2E_ARGS) - + .PHONY: $(TARGETS) test else