fix: set default name to AppNameOverwrite to allow pwa install

This commit is contained in:
Julian Krauser 2025-01-13 12:45:45 +01:00
parent 0ee5a92c95
commit 065b0aa6d5

View file

@ -11,6 +11,12 @@ do
do
# Get environment variable
value=$(eval echo "\$$key")
# Set default value for APPNAMEOVERWRITE if empty
if [ "$key" = "APPNAMEOVERWRITE" ] && [ -z "$value" ]; then
value="FF Admin"
fi
echo "replace $key by $value"
# replace __[variable_name]__ value with environment variable