From d17b633f124d6e36d35f673d77cb7c606e74444d Mon Sep 17 00:00:00 2001 From: Sid Shukla Date: Thu, 2 May 2024 18:07:59 +0200 Subject: [PATCH] Update ci-e2e.sh to quote LABEL_FILTERS value This is to ensure the full value of LABEL_FILTERS gets propagated. --- scripts/ci-e2e.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ci-e2e.sh b/scripts/ci-e2e.sh index 549e46e055..c9d0ed3232 100755 --- a/scripts/ci-e2e.sh +++ b/scripts/ci-e2e.sh @@ -43,4 +43,5 @@ NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME=${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME} NUTANIX_SUBNET_NAME=${NUTANIX_SUBNET_NAME} # Run e2e tests -make ${MAKE_TARGET} LABEL_FILTERS=${LABEL_FILTERS} \ No newline at end of file +echo "Running make with TARGET: ${MAKE_TARGET} and LABEL_FILTERS: ${LABEL_FILTERS}" +make ${MAKE_TARGET} LABEL_FILTERS="${LABEL_FILTERS}" \ No newline at end of file