From e2277db2c09f5dfdf28c7b7536faec540ca70e1f Mon Sep 17 00:00:00 2001 From: Daniel Garnier-Moiroux Date: Thu, 3 Jul 2025 17:26:07 +0200 Subject: [PATCH] ci: fix TEST_APIHOST jq expression --- ci/integration-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/integration-test.sh b/ci/integration-test.sh index e3d3b0072d..0d56185de5 100755 --- a/ci/integration-test.sh +++ b/ci/integration-test.sh @@ -17,7 +17,7 @@ fi CF_CREDS=$(cat "${ROOT}"/environment/cf-creds.json) -TEST_APIHOST=$(jq -n -r --argjson credentials "${CF_CREDS}" '"$credentials.api_url"') +TEST_APIHOST=$(jq -n -r --argjson credentials "${CF_CREDS}" '$credentials.api_url') export TEST_APIHOST TEST_ADMIN_USERNAME=$(jq -n -r --argjson credentials "${CF_CREDS}" '$credentials.username')