-
Bug
-
Resolution: Won't Fix
-
Major
-
None
-
Windows
If a property file is passed in that contains a variable name that contains a . and then is referenced it does not resolve.
For example
Use the property file field to bring in a file that contains the following:
my.variable.name=1
Then in the next section have the following:
$SOME_VARIABLE=$my.variable.name
$SOME_VARIABLE will then resolve to $my.variable.name instead of resolving to 1.
Also tried was: $SOME_VARIABLE=${my.variable.name}
As in shell scripts, environment variables with dot are not accepted