From 1cc346671521a4381776bb9145af1be3b290fe8b Mon Sep 17 00:00:00 2001 From: Sally MacFarlane Date: Mon, 27 Apr 2020 15:44:58 +1000 Subject: [PATCH] added subcommand in message (#1671) Signed-off-by: Sally MacFarlane --- .../main/java/tech/pegasys/artemis/cli/BeaconNodeCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artemis/src/main/java/tech/pegasys/artemis/cli/BeaconNodeCommand.java b/artemis/src/main/java/tech/pegasys/artemis/cli/BeaconNodeCommand.java index abd66580f26..65e837446ed 100644 --- a/artemis/src/main/java/tech/pegasys/artemis/cli/BeaconNodeCommand.java +++ b/artemis/src/main/java/tech/pegasys/artemis/cli/BeaconNodeCommand.java @@ -219,7 +219,7 @@ private int handleParseException(final CommandLine.ParameterException ex, final CommandLine.UnmatchedArgumentException.printSuggestions(ex, outputWriter); outputWriter.println(); outputWriter.println("To display full help:"); - outputWriter.println("teku --help"); + outputWriter.println("teku [COMMAND] --help"); return ex.getCommandLine().getCommandSpec().exitCodeOnInvalidInput(); }