From ae3ce82e601f7db3aa5b510ed532b30cbd840d28 Mon Sep 17 00:00:00 2001 From: Viktor Kolomeyko Date: Mon, 27 Jan 2020 15:00:08 +0000 Subject: [PATCH] CORDA-3559: Remove reference to `man run` `man` shell command is deemed to be unsafe. --- .../src/main/kotlin/net/corda/tools/shell/InteractiveShell.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/shell/src/main/kotlin/net/corda/tools/shell/InteractiveShell.kt b/tools/shell/src/main/kotlin/net/corda/tools/shell/InteractiveShell.kt index 58b9692b0d..27c8f3472f 100644 --- a/tools/shell/src/main/kotlin/net/corda/tools/shell/InteractiveShell.kt +++ b/tools/shell/src/main/kotlin/net/corda/tools/shell/InteractiveShell.kt @@ -626,7 +626,7 @@ object InteractiveShell { } catch (e: StringToMethodCallParser.UnparseableCallException) { out.println(e.message, Decoration.bold, Color.red) if (e !is StringToMethodCallParser.UnparseableCallException.NoSuchFile) { - out.println("Please try 'man run' to learn what syntax is acceptable") + out.println("Please try 'run -h' to learn what syntax is acceptable") } } catch (e: Exception) { out.println("RPC failed: ${e.rootCause}", Decoration.bold, Color.red)