Skip to content

Commit

Permalink
Issue #5256 --add-modules
Browse files Browse the repository at this point in the history
updates from review

Signed-off-by: Greg Wilkins <gregw@webtide.com>
  • Loading branch information
gregw committed Sep 14, 2020
1 parent 46f051d commit f4567a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public boolean accept(Path entry) throws IOException
List<String> startLines = new ArrayList<>();
for (Path path : paths)
{
StartLog.info("cp " + baseHome.toShortForm(path) + " to " + baseHome.toShortForm(startini));
StartLog.info("copy " + baseHome.toShortForm(path) + " to " + baseHome.toShortForm(startini));
startLines.add("");
startLines.add("# Config from " + baseHome.toShortForm(path));
startLines.addAll(Files.readAllLines(path));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public boolean acknowledgeLicenses() throws IOException
String propBasedAckValue = System.getProperty(PROP_ACK_LICENSES);
if (propBasedAckValue != null)
{
StartLog.info("Programmatic ACK - %s=%s", PROP_ACK_LICENSES, propBasedAckValue);
StartLog.info("Automatic License Acknowledgment - %s=%s", PROP_ACK_LICENSES, propBasedAckValue);
licenseAck = Boolean.parseBoolean(propBasedAckValue);
}
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
/**
* Management of the <code>${jetty.base}/start.d/</code> based configuration.
* <p>
* Implementation of the <code>--add-modues=[name]</code> command line behavior
* Implementation of the <code>--add-modules=[name]</code> command line behavior
*/
public class StartDirBuilder implements BaseBuilder.Config
{
Expand Down

0 comments on commit f4567a4

Please sign in to comment.