env files sometimes chop off the last character off when there is a space in the value, but not followed by a newline. here are my findings. pay attention to the trailing new line.
case 1: the bug
VARNAME is "A "
case 2: a new line fixing the bug
VARNAME is "A B"
case 3 and 4: bug not present without a space in the value
VARNAME is "ABC" in both cases
env files sometimes chop off the last character off when there is a space in the value, but not followed by a newline. here are my findings. pay attention to the trailing new line.
case 1: the bug
VARNAME is
"A "case 2: a new line fixing the bug
VARNAME is
"A B"case 3 and 4: bug not present without a space in the value
VARNAME is
"ABC"in both cases