From c93419dd5238d4028ec309f0954fbd0b83849cfe Mon Sep 17 00:00:00 2001 From: yogananth subramanian Date: Sat, 29 Jun 2024 19:38:54 +0530 Subject: [PATCH] Fix: HOST env Set HOST env in test.sh and override the value set in Makefile --- ci-scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-scripts/test.sh b/ci-scripts/test.sh index d0481a9..04912d8 100755 --- a/ci-scripts/test.sh +++ b/ci-scripts/test.sh @@ -30,7 +30,7 @@ else exit 1 fi export HOST -HOST=${HOST:-"https://$(oc get routes "$rhdh_route" -n "${RHDH_NAMESPACE:-rhdh-performance}" -o jsonpath='{.spec.host}')"} +HOST="https://$(oc get routes "$rhdh_route" -n "${RHDH_NAMESPACE:-rhdh-performance}" -o jsonpath='{.spec.host}')" # end-of testing env ARTIFACT_DIR=$(readlink -m "${ARTIFACT_DIR:-.artifacts}")