From fe2a36ca9d14f3537dd03409de69e7191d58d19c Mon Sep 17 00:00:00 2001 From: Vito Giarrusso Date: Wed, 26 Jul 2017 19:04:30 +1000 Subject: [PATCH] added mention of suppressShellCmd in Shell section, and example --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1d6e938..f2d99d5 100644 --- a/README.md +++ b/README.md @@ -251,8 +251,9 @@ shell command and the second is an optional human-readable description. Shell commands support an extended syntax as well, which provides more fine-grained control. A command can be specified as a dictionary that contains -the command to be run, a description, and whether `stdin`, `stdout`, and -`stderr` are enabled. In this syntax, all keys are optional except for the +the command to be run, a description, whether to suppress outputting the +command in the display via `suppressShellCmd`, and whether `stdin`, `stdout`, +and `stderr` are enabled. In this syntax, all keys are optional except for the command itself. #### Example @@ -269,6 +270,7 @@ command itself. - command: read fail stderr: true + suppressShellCmd: true ``` ### Clean