From 29b570f17603f61807f7bc3e4a215e7005fb47e8 Mon Sep 17 00:00:00 2001 From: Josepablo C Date: Mon, 8 Sep 2025 21:43:11 -0600 Subject: [PATCH] fix: apiConfig_local.json -> apiConfig.json --- v1/scripts/ci_functions.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/v1/scripts/ci_functions.sh b/v1/scripts/ci_functions.sh index 652be31..dbab86e 100644 --- a/v1/scripts/ci_functions.sh +++ b/v1/scripts/ci_functions.sh @@ -18,8 +18,13 @@ function build_docker(){ CONTAINER_NAME=$1 APICONFIG_BASE64=$2 + if [[ -z "${APICONFIG_BASE64}" ]]; then + echo "APICONFIG not found" + return -1 + fi + echo ${APICONFIG_BASE64} > config.tmp - base64 -d config.tmp > src/config/apiConfig_local.json + base64 -d config.tmp > src/config/apiConfig.json rm config.tmp set -x