From 14d1d340b6be6be3ec5d13e6c576bcf450dd9d80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Mart=C3=ADnez=20Fay=C3=B3?= Date: Fri, 17 Nov 2023 13:11:37 -0300 Subject: [PATCH] Use Go from build directory in Windows integration tests instead of requiring a Go installation (#4670) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Agustín Martínez Fayó --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 407766ee40..ae468ade16 100644 --- a/Makefile +++ b/Makefile @@ -314,7 +314,7 @@ else endif integration-windows: - $(E)./test/integration/test-windows.sh $(SUITES) + $(E)$(go_path) ./test/integration/test-windows.sh $(SUITES) ############################################################################# # Docker Images