File tree Expand file tree Collapse file tree 1 file changed +31
-30
lines changed Expand file tree Collapse file tree 1 file changed +31
-30
lines changed Original file line number Diff line number Diff line change @@ -4081,49 +4081,50 @@ task test {
4081
4081
output {
4082
4082
String out = read_string(stdout())
4083
4083
}
4084
- }
4085
4084
4086
- workflow environment_variable_should_echo {
4087
- input {
4088
- String greeting
4089
- }
4090
-
4091
- call test {
4092
- input: greeting = greeting
4093
- }
4094
-
4095
- output {
4096
- String out = test.out
4085
+ workflow environment_variable_should_echo {
4086
+ input {
4087
+ String greeting
4088
+ }
4089
+
4090
+ call test {
4091
+ input: greeting = greeting
4092
+ }
4093
+
4094
+ output {
4095
+ String out = test.out
4096
+ }
4097
4097
}
4098
4098
}
4099
4099
```
4100
4100
</summary >
4101
4101
<p >
4102
4102
Example input:
4103
4103
4104
- ``` json
4105
- {
4106
- "environment_variable_should_echo.greeting" : " hello"
4107
- }
4108
- ```
4109
4104
4110
- Example output:
4105
+ ``` json
4106
+ {
4107
+ "environment_variable_should_echo.greeting" : " hello"
4108
+ }
4109
+ ```
4111
4110
4112
- ``` json
4113
- {
4114
- "environment_variable_should_echo.out" : " hello"
4115
- }
4116
- ```
4111
+ Example output:
4117
4112
4118
- Test config:
4113
+ ``` json
4114
+ {
4115
+ "environment_variable_should_echo.out" : " hello"
4116
+ }
4117
+ ```
4119
4118
4120
- ``` json
4121
- {
4122
- "fail" : false
4123
- }
4124
- ```
4119
+ Test config:
4125
4120
4126
- </p >
4121
+ ``` json
4122
+ {
4123
+ "fail" : false
4124
+ }
4125
+ ```
4126
+
4127
+ </p >
4127
4128
</details >
4128
4129
4129
4130
#### String Escaping and Injection Prevention
You can’t perform that action at this time.
0 commit comments