expand jetty properties when generating dry-run command line

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2022-10-04 17:17:33 +11:00
parent 8e63e872f7
commit f60bbf3b11
1 changed files with 1 additions and 1 deletions

View File

@ -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)