From 49d1b0b83953de5a061700ea93fea6f29ac8ae26 Mon Sep 17 00:00:00 2001 From: Beka Kotchauri <145648546+bkochauri-memphis@users.noreply.github.com> Date: Wed, 13 Dec 2023 11:34:20 +0000 Subject: [PATCH] Update mandatory_variable_check.sh --- .github/scripts/mandatory_variable_check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/mandatory_variable_check.sh b/.github/scripts/mandatory_variable_check.sh index 8043a8b..dd4c01f 100755 --- a/.github/scripts/mandatory_variable_check.sh +++ b/.github/scripts/mandatory_variable_check.sh @@ -4,7 +4,7 @@ STATUS=TRUE # Array of mandatory expressions in docker-compose file -array=( DOCKER_ENV=true ROOT_PASSWORD=memphis CONNECTION_TOKEN=memphis ) +array=( DOCKER_ENV: true ROOT_PASSWORD: memphis CONNECTION_TOKEN: memphis ) # For loop that validate each expression in array for i in "${array[@]}"