Skip to content

Commit

Permalink
Issue #12019 ensure cmd line properties files applied
Browse files Browse the repository at this point in the history
  • Loading branch information
janbartel committed Jul 11, 2024
1 parent 17c8a76 commit d21127f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -656,14 +656,14 @@ else if (properties.size() > 0)
cmd.addArg(propPath.toAbsolutePath().toString());
}

for (Path xml : jettyEnvironment.getXmlFiles())
for (Path propertyFile : jettyEnvironment.getPropertyFiles())
{
cmd.addArg(xml.toAbsolutePath().toString());
cmd.addArg(propertyFile.toAbsolutePath().toString());
}

for (Path propertyFile : jettyEnvironment.getPropertyFiles())
for (Path xml : jettyEnvironment.getXmlFiles())
{
cmd.addArg(propertyFile.toAbsolutePath().toString());
cmd.addArg(xml.toAbsolutePath().toString());
}
}

Expand Down

0 comments on commit d21127f

Please sign in to comment.