Skip to content
Snippets Groups Projects
Commit c987bbcb authored by ThanKarab's avatar ThanKarab
Browse files

CONVERT_CSVS env var can now be lowercase.

parent 91efecee
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ getMasterIPFromConsul() {
convertCSVsToDB() {
# Skip convertion if flag is false
if [[ ${CONVERT_CSVS} == "FALSE" ]]; then
if [[ ${CONVERT_CSVS} == "FALSE" || ${CONVERT_CSVS} == "false" ]]; then
echo "$(timestamp) CSV convertion turned off. "
return 0
fi
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment