expand jetty properties when generating dry-run command line
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
parent
8e63e872f7
commit
f60bbf3b11
|
@ -817,7 +817,7 @@ public class StartArgs
|
|||
{
|
||||
for (Prop p : properties)
|
||||
{
|
||||
cmd.addRawArg(CommandLineBuilder.quote(p.key) + "=" + CommandLineBuilder.quote(p.value));
|
||||
cmd.addRawArg(CommandLineBuilder.quote(p.key) + "=" + CommandLineBuilder.quote(properties.expand(p.value)));
|
||||
}
|
||||
}
|
||||
else if (properties.size() > 0)
|
||||
|
|
Loading…
Reference in New Issue