Skip to content

Commit

Permalink
CICD-263: add support for new flag in entrypoint script
Browse files Browse the repository at this point in the history
  • Loading branch information
saars-orca committed Aug 22, 2024
1 parent 9bb440c commit e859d47
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e859d47

Please sign in to comment.