Skip to content

Commit 9b7bf32

Browse files
committed
Document the output of a task that defines an non-awaited process
Closes #1004 Signed-off-by: Charles d'Avernas <[email protected]>
1 parent df6686a commit 9b7bf32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dsl-reference.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -716,13 +716,13 @@ Provides the capability to execute external [containers](#container-process), [s
716716

717717
##### Properties
718718

719-
| Name | Type | Required | Description|
719+
| Name | Type | Required | Description |
720720
|:--|:---:|:---:|:---|
721721
| run.container | [`container`](#container-process) | `no` | The definition of the container to run.<br>*Required if `script`, `shell` and `workflow` have not been set.* |
722722
| run.script | [`script`](#script-process) | `no` | The definition of the script to run.<br>*Required if `container`, `shell` and `workflow` have not been set.* |
723723
| run.shell | [`shell`](#shell-process) | `no` | The definition of the shell command to run.<br>*Required if `container`, `script` and `workflow` have not been set.* |
724724
| run.workflow | [`workflow`](#workflow-process) | `no` | The definition of the workflow to run.<br>*Required if `container`, `script` and `shell` have not been set.* |
725-
| await | `boolean` | `no` | Determines whether or not the process to run should be awaited for.<br>*Defaults to `true`.* |
725+
| await | `boolean` | `no` | Determines whether or not the process to run should be awaited for.<br>*When set to `false`, the task cannot wait for the process to complete and thus cannot output the process’s result. In this case, it should simply output its transformed input.*<br>*Defaults to `true`.* |
726726

727727
##### Examples
728728

0 commit comments

Comments
 (0)