Commit 5231d041 authored by tom goriunov's avatar tom goriunov Committed by GitHub

Add run-time variable to skip ENVs validation (#2334)

Add run-time variable to skip ENV validation
parent 70b2a69e
...@@ -39,9 +39,14 @@ export_envs_from_preset ...@@ -39,9 +39,14 @@ export_envs_from_preset
./download_assets.sh ./public/assets/configs ./download_assets.sh ./public/assets/configs
# Check run-time ENVs values # Check run-time ENVs values
./validate_envs.sh if [ "$SKIP_ENVS_VALIDATION" != "true" ]; then
if [ $? -ne 0 ]; then ./validate_envs.sh
exit 1 if [ $? -ne 0 ]; then
exit 1
fi
else
echo "😱 Skipping ENVs validation."
echo
fi fi
# Generate favicons bundle # Generate favicons bundle
......
Markdown is supported
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