Skip to content

Commit 8621ce1

Browse files
authored
fix typos in check-config.sh
1 parent 10b20c0 commit 8621ce1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

check-config.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ print_head_1 "Checking .env file values"
220220
WRONG_ENV_FILES_VALUES=0
221221

222222
DEBUG_ENTRYPOINT="$( get_env_value "DEBUG_ENTRYPOINT" )"
223-
if [ "${DEBUG_ENTRYPOINT}" != "0" ] && [ "${DEBUG_ENTRYPOINT}" != "1" ] && [ "${DEBUG_ENTRYPOINT}" != "2" ] && [ "${DEBUG_ENTRYPOINT}" != "3" ] && [ "${DEBUG_ENTRYPOINT}" != "3" ]; then
224-
log_err "Variable 'DEBUG_ENTRYPOINT' should be 0, 1 or 2. Has: ${DEBUG_ENTRYPOINT}"
223+
if [ "${DEBUG_ENTRYPOINT}" != "0" ] && [ "${DEBUG_ENTRYPOINT}" != "1" ] && [ "${DEBUG_ENTRYPOINT}" != "2" ] && [ "${DEBUG_ENTRYPOINT}" != "3" ] && [ "${DEBUG_ENTRYPOINT}" != "4" ]; then
224+
log_err "Variable 'DEBUG_ENTRYPOINT' should be 0, 1, 2, 3 or 4. Has: ${DEBUG_ENTRYPOINT}"
225225
RET_CODE=$(( RET_CODE + 1))
226226
WRONG_ENV_FILES_VALUES=1
227227
else

0 commit comments

Comments
 (0)