Skip to content

Commit

Permalink
Do not append spaces when creating EXTRA_PROPERTIES
Browse files Browse the repository at this point in the history
  • Loading branch information
ibacher authored Aug 9, 2024
1 parent f560cd8 commit d1aae84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion startup-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ if [[ -n "${EXTRA_VARS+x}" ]]; then
var=$(echo "${i#OMRS_EXTRA_}" | tr [:upper:] [:lower:])
var=${var//_/.}
var=${var//../_}
EXTRA_PROPERTIES+="${var}=${!i} \n"
EXTRA_PROPERTIES+="${var}=${!i}\n"
done

echo -e "$EXTRA_PROPERTIES" >> "$OMRS_SERVER_PROPERTIES_FILE"
Expand Down

0 comments on commit d1aae84

Please sign in to comment.