From e859d47e58ffd8c978bdf6d850ae925df3a6b8f0 Mon Sep 17 00:00:00 2001 From: Saar Sever Date: Thu, 22 Aug 2024 13:50:40 +0300 Subject: [PATCH] CICD-263: add support for new flag in entrypoint script --- entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 42930a1..c31c798 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -49,6 +49,9 @@ function set_global_flags() { if [ "${INPUT_DEBUG}" == "true" ]; then GLOBAL_FLAGS+=(--debug) fi + if [ "${INPUT_DISABLE_ACTIVE_VERIFICATION}" == "true" ]; then + GLOBAL_FLAGS+=(--disable-active-verification) + fi if [ "${INPUT_LOG_PATH}" ]; then GLOBAL_FLAGS+=(--log-path "${INPUT_LOG_PATH}") fi