fix: set default name to AppNameOverwrite to allow pwa install
This commit is contained in:
parent
0ee5a92c95
commit
065b0aa6d5
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue