We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67fbcb9 commit d1284fdCopy full SHA for d1284fd
1 file changed
server/basedir-includes/configure-from-env
@@ -114,8 +114,10 @@ while read -r keyvalue; do
114
ACTUAL_KEY="${ACTUAL_KEY//_/.}"
115
116
# lower case
117
- # example: database.max-connections
118
- ACTUAL_KEY="${ACTUAL_KEY,,}"
+ # example: database.max-connections (but not _MP_user_pref_default_showTags)
+ if [[ ! ${ACTUAL_KEY} =~ [a-z] ]]; then
119
+ ACTUAL_KEY="${ACTUAL_KEY,,}"
120
+ fi
121
122
# if key does not exist in mirth.properties append it at bottom
123
LINE_COUNT=`grep "^${ACTUAL_KEY}" "$APP_DIR/conf/mirth.properties" | wc -l`
0 commit comments