From 4ebe58ffd97de53bb6aa67383ca6e9d81eb1f732 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Tue, 12 Dec 2023 11:25:03 +0200 Subject: [PATCH] Makefile: fix e2e-testing of the full image Fix syntax error in the shell code. Also enable verbosity to print out the shell script being run. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3c812c08c..ca025da87 100644 --- a/Makefile +++ b/Makefile @@ -198,7 +198,7 @@ e2e-test: -ginkgo.v \ -test.timeout=1h \ $(if $(OPENSHIFT),-nfd.openshift,) - @if [ "$(E2E_TEST_FULL_IMAGE)" = "true" ]; then \ + if [ "$(E2E_TEST_FULL_IMAGE)" = "true" ]; then \ $(GO_CMD) test -v ./test/e2e/ -args -nfd.repo=$(IMAGE_REPO) -nfd.tag=$(IMAGE_TAG_NAME)-full \ -kubeconfig=$(KUBECONFIG) \ -nfd.e2e-config=$(E2E_TEST_CONFIG) \ @@ -207,7 +207,7 @@ e2e-test: -ginkgo.label-filter=$(E2E_GINKGO_LABEL_FILTER) \ -ginkgo.v \ -test.timeout=1h \ - $(if $(OPENSHIFT),-nfd.openshift,) + $(if $(OPENSHIFT),-nfd.openshift,); \ fi push: