Issue #12019 ensure cmd line properties files applied (#12026)

This commit is contained in:
Jan Bartel 2024-07-12 09:49:17 +10:00 committed by GitHub
parent bbf25edf1e
commit 1a43fbac7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 5 deletions

View File

@ -656,15 +656,15 @@ public class StartArgs
cmd.addArg(propPath.toAbsolutePath().toString());
}
for (Path xml : jettyEnvironment.getXmlFiles())
{
cmd.addArg(xml.toAbsolutePath().toString());
}
for (Path propertyFile : jettyEnvironment.getPropertyFiles())
{
cmd.addArg(propertyFile.toAbsolutePath().toString());
}
for (Path xml : jettyEnvironment.getXmlFiles())
{
cmd.addArg(xml.toAbsolutePath().toString());
}
}
if (parts.contains("envs"))